Skip to content

Commit

Permalink
chore(ci): increase timeouts for flakey e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulHax committed Oct 23, 2024
1 parent 41a6c37 commit f6e7cff
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 f6e7cff

Please sign in to comment.