()
| 9 | let loopbackBindSupportPromise: Promise<boolean> | null = null; |
| 10 | |
| 11 | function requiresLoopbackCoverage(): boolean { |
| 12 | return ['1', 'true', 'yes', 'on'].includes( |
| 13 | (process.env.AGENT_DEVICE_REQUIRE_LOOPBACK_TESTS ?? '').toLowerCase(), |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export async function supportsLoopbackBind(): Promise<boolean> { |
| 18 | if (loopbackBindSupportPromise) { |
no outgoing calls
no test coverage detected