File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,16 @@ export class FreshChrome implements Interceptor {
53
53
// and might find a new install.
54
54
browser : ( await getChromeBrowserName ( this . config ) ) || 'chrome' ,
55
55
proxy : `https://localhost:${ proxyPort } ` ,
56
- // Don't intercept our warning hiding requests
57
- noProxy : hideWarningServer . host ,
58
- options : [
59
- // Trust our CA certificate's fingerprint:
60
- `--ignore-certificate-errors-spki-list=${ spkiFingerprint } ` ,
56
+ noProxy : [
57
+ // Don't intercept our warning hiding requests
58
+ hideWarningServer . host ,
61
59
// Force even localhost requests to go through the proxy
62
60
// See https://bugs.chromium.org/p/chromium/issues/detail?id=899126#c17
63
- `--proxy-bypass-list='<-loopback>'`
61
+ '<-loopback>'
62
+ ] ,
63
+ options : [
64
+ // Trust our CA certificate's fingerprint:
65
+ `--ignore-certificate-errors-spki-list=${ spkiFingerprint } `
64
66
]
65
67
} , this . config . configPath ) ;
66
68
You can’t perform that action at this time.
0 commit comments