Ignore certificate errors by default (#2853)

This commit is contained in:
Peter Hedenskog 2020-01-25 20:53:49 +01:00 committed by GitHub
parent 441009285e
commit cc2ebf1059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -126,7 +126,10 @@ async function runBrowsertime() {
delay: 0,
video: false,
visualMetrics: false,
resultDir: '/tmp/browsertime'
resultDir: '/tmp/browsertime',
chrome: {
ignoreCertificateErrors: true
}
};
const btOptions = merge({}, parsed.argv.browsertime, defaultConfig);