()
| 153 | let selfTestEmitted = false; |
| 154 | let pendingRuntimeContext: SentryRuntimeContext | null = null; |
| 155 | function isSentryDisabled(): boolean { |
| 156 | return ( |
| 157 | process.env.XCODEBUILDMCP_SENTRY_DISABLED === 'true' || process.env.SENTRY_DISABLED === 'true' |
| 158 | ); |
| 159 | } |
| 160 | |
| 161 | function isTestEnv(): boolean { |
| 162 | return process.env.VITEST === 'true' || process.env.NODE_ENV === 'test'; |
no outgoing calls
no test coverage detected