Skip to content

Commit

Permalink
chore: increase tests timeout even more
Browse files Browse the repository at this point in the history
Very slow CI today...
  • Loading branch information
Leksat committed Oct 7, 2024
1 parent 3842944 commit 2f51b44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/npm/@amazeelabs/silverback-playwright/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const waitForGatsby = async () => {

const timeout = setTimeout(() => {
throw new Error('Gatsby took too long to build.');
}, 120_000);
}, 180_000);

if (status === 'outdated') {
// Sometimes this request fails in CI.
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/silverback-gatsby/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const config: PlaywrightTestConfig = {
},
],
// Initial gatsby build can take long.
timeout: 120_000,
timeout: 180_000,
};

export default defineConfig(config);

0 comments on commit 2f51b44

Please sign in to comment.