(
scope: SwTestHarness,
url: string,
clientId?: string,
init: Object = {},
)
| 2910 | } |
| 2911 | |
| 2912 | function makeNavigationRequest( |
| 2913 | scope: SwTestHarness, |
| 2914 | url: string, |
| 2915 | clientId?: string, |
| 2916 | init: Object = {}, |
| 2917 | ): Promise<string | null> { |
| 2918 | return makeRequest(scope, url, clientId, { |
| 2919 | headers: { |
| 2920 | Accept: 'text/plain, text/html, text/css', |
| 2921 | ...(init as any).headers, |
| 2922 | }, |
| 2923 | mode: 'navigate', |
| 2924 | ...init, |
| 2925 | }); |
| 2926 | } |
no test coverage detected
searching dependent graphs…