Skip to content

Commit

Permalink
Merge pull request #674 from PaulHax/ci-e2e-flake
Browse files Browse the repository at this point in the history
chore(ci): increase timeouts for flakey e2e tests
  • Loading branch information
floryst authored Oct 24, 2024
2 parents 0c2272d + f6e7cff commit ed8f158
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/specs/layers.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Add Layer button', () => {
// Wait for a primary selection
await volViewPage.waitForViews();
// kludge for CI (dataset not seen as layerable yet without?)
await browser.pause(10000);
await browser.pause(15000);

const menus = await volViewPage.datasetMenuButtons;
await menus[1].click();
Expand Down
2 changes: 1 addition & 1 deletion wdio.shared.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const config: Options.Testrunner = {
reporters: ['spec', 'html-nice'],
mochaOpts: {
ui: 'bdd',
timeout: 90 * 1000,
timeout: 120 * 1000,
},

//
Expand Down

0 comments on commit ed8f158

Please sign in to comment.