()
| 31 | // Force tracking on. Useful for workerd-based tests where the env |
| 32 | // var doesn't reach process.env or globalThis. Idempotent. |
| 33 | export function enableStubTracking(): void { |
| 34 | trackingEnabled = true; |
| 35 | } |
| 36 | |
| 37 | const counters = new Map<string, number>(); |
| 38 |
no outgoing calls
no test coverage detected