(kind: 'debug' | 'info' | 'log' | 'warn' | 'error')
| 4 | |
| 5 | const isInTestMode = IS_IN_AUTOMATED_TEST; |
| 6 | const consoleExceptInTest = (kind: 'debug' | 'info' | 'log' | 'warn' | 'error') => |
| 7 | (isInTestMode ? () => {} : console[kind]) satisfies typeof console.log; |
| 8 | |
| 9 | export const logExceptInTest = consoleExceptInTest('log'); |
| 10 |
no outgoing calls
no test coverage detected