()
| 65 | let logFilePath: string | null = null; |
| 66 | |
| 67 | function isTestEnv(): boolean { |
| 68 | return ( |
| 69 | process.env.VITEST === 'true' || |
| 70 | process.env.NODE_ENV === 'test' || |
| 71 | process.env.XCODEBUILDMCP_SILENCE_LOGS === 'true' |
| 72 | ); |
| 73 | } |
| 74 | |
| 75 | type SentryModule = typeof import('@sentry/node'); |
| 76 | type SentryLogLevel = 'trace' | 'debug' | 'info' | 'warn' | 'error' | 'fatal'; |
no outgoing calls
no test coverage detected