(scope: SwTestHarness, url: string, clientId?: string)
| 402 | })(); |
| 403 | |
| 404 | function makeRequest(scope: SwTestHarness, url: string, clientId?: string): Promise<string | null> { |
| 405 | const [resTextPromise, done] = makePendingRequest(scope, url, clientId); |
| 406 | return done.then(() => resTextPromise); |
| 407 | } |
| 408 | |
| 409 | function makeNoCorsRequest( |
| 410 | scope: SwTestHarness, |
no test coverage detected
searching dependent graphs…