(interceptor)
| 57 | } |
| 58 | |
| 59 | function createTestModule(interceptor) { |
| 60 | return Test.createTestingModule({ |
| 61 | imports: [AppModule], |
| 62 | providers: [ |
| 63 | { |
| 64 | provide: APP_INTERCEPTOR, |
| 65 | useValue: interceptor, |
| 66 | }, |
| 67 | ], |
| 68 | }).compile(); |
| 69 | } |
| 70 | |
| 71 | describe('Interceptors', () => { |
| 72 | let app: INestApplication; |
no test coverage detected