| 3 | * All methods are no-ops; telemetry is not sent in tests. |
| 4 | */ |
| 5 | export class TelemetryReporter { |
| 6 | constructor( |
| 7 | _connectionString: string, |
| 8 | _replacementOptions?: unknown, |
| 9 | _initializationOptions?: unknown, |
| 10 | _customFetcher?: unknown, |
| 11 | _appInsightsOptions?: unknown |
| 12 | ) {} |
| 13 | sendTelemetryEvent(_name: string, _props?: Record<string, string>): void {} |
| 14 | sendTelemetryErrorEvent(_name: string, _props?: Record<string, string>): void {} |
| 15 | dispose(): Promise<void> { return Promise.resolve(); } |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected