Skip to content

Commit

Permalink
Puede ser error de viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
CANCI0 committed Apr 26, 2024
1 parent ad17021 commit a4a2f86
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion webapp/e2e/steps/logout.steps.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ defineFeature(feature, (test) => {
beforeAll(async () => {
browser = process.env.GITHUB_ACTIONS
? await puppeteer.launch({ headless: 'new', slowMo: 100 })
: await puppeteer.launch({ headless: 'new', slowMo: 100 });
: await puppeteer.launch({ headless: false, slowMo: 100 });
page = await browser.newPage();

await page.setViewport({ width: 600, height: 800 });

//Way of setting up the timeout
setDefaultOptions({ timeout: 10000 });

Expand Down

0 comments on commit a4a2f86

Please sign in to comment.