| 359 | }); |
| 360 | describe('when custom logger is being used', () => { |
| 361 | class CustomLogger implements LoggerService { |
| 362 | log(message: any, context?: string) {} |
| 363 | error(message: any, trace?: string, context?: string) {} |
| 364 | warn(message: any, context?: string) {} |
| 365 | } |
| 366 | |
| 367 | const customLogger = new CustomLogger(); |
| 368 | let previousLoggerRef: LoggerService; |
nothing calls this directly
no outgoing calls
no test coverage detected