(testId: string, sep: "?" | "&")
| 87 | * single-tenant URLs clean. |
| 88 | */ |
| 89 | export function testIdSuffix(testId: string, sep: "?" | "&"): string { |
| 90 | return testId === DEFAULT_TEST_ID ? "" : `${sep}testId=${encodeURIComponent(testId)}`; |
| 91 | } |
| 92 | |
| 93 | /** Default upstream timeout for the live lifecycle proxy (matches recorder.ts). */ |
| 94 | export const DEFAULT_UPSTREAM_TIMEOUT_MS = 30_000; |
no outgoing calls
no test coverage detected
searching dependent graphs…