Skip to content

Commit

Permalink
fix: pipeline speed by skipping firefox test (#2895)
Browse files Browse the repository at this point in the history
* fix: pipeline speed by skipping firefox test

* fix: increase speed for accessibility-checker by using playwright page.content

* fix: revert changes for playwright test

* Update default.ts

---------

Co-authored-by: Maximilian Franzke <[email protected]>
  • Loading branch information
nmerget and mfranzke authored Jul 23, 2024
1 parent 44c8a52 commit 87a4507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions showcases/e2e/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ export const getDefaultScreenshotTest = ({
let failures: any[] = [];
try {
if (project.name === 'firefox') {
// Checking complete DOM in firefox takes very long for some tests
test.setTimeout(120_000); // 2min
// Checking complete DOM in Firefox takes very long, we skip this test for Firefox
test.skip();
}

const { report } = await getCompliance(page, path);
Expand Down

0 comments on commit 87a4507

Please sign in to comment.