Skip to content

Commit

Permalink
fix: readded https thing
Browse files Browse the repository at this point in the history
  • Loading branch information
Toto-hitori committed May 1, 2024
1 parent 4d7ee46 commit 7b015a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/e2e/steps/register_positive_form.steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ defineFeature(feature, test => {

beforeAll(async () => {
browser = process.env.GITHUB_ACTIONS
? await puppeteer.launch()
: await puppeteer.launch({ headless: false, slowMo: 100});
? await puppeteer.launch({ ignoreHTTPSErrors: true})
: await puppeteer.launch({ headless: false, slowMo: 100, ignoreHTTPSErrors: true });
page = await browser.newPage();
//Way of setting up the timeout
setDefaultOptions({ timeout: 10000 })
Expand Down

0 comments on commit 7b015a0

Please sign in to comment.