We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ignoreHTTPSErrors
1 parent a16d546 commit ed60439Copy full SHA for ed60439
packages/jest-environment-puppeteer/src/PuppeteerEnvironment.js
@@ -17,6 +17,7 @@ class PuppeteerEnvironment extends NodeEnvironment {
17
}
18
this.global.browser = await puppeteer.connect({
19
slowMo: config && config.launch && config.launch.slowMo ? config.launch.slowMo : undefined,
20
+ ignoreHTTPSErrors: config && config.launch && config.launch.ignoreHTTPSErrors ? config.launch.ignoreHTTPSErrors : undefined,
21
browserWSEndpoint: wsEndpoint,
22
})
23
this.global.page = await this.global.browser.newPage()
0 commit comments