We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3842944 commit 2f51b44Copy full SHA for 2f51b44
packages/npm/@amazeelabs/silverback-playwright/index.ts
@@ -47,7 +47,7 @@ export const waitForGatsby = async () => {
47
48
const timeout = setTimeout(() => {
49
throw new Error('Gatsby took too long to build.');
50
- }, 120_000);
+ }, 180_000);
51
52
if (status === 'outdated') {
53
// Sometimes this request fails in CI.
packages/tests/silverback-gatsby/playwright.config.ts
@@ -38,7 +38,7 @@ export const config: PlaywrightTestConfig = {
38
},
39
],
40
// Initial gatsby build can take long.
41
- timeout: 120_000,
+ timeout: 180_000,
42
};
43
44
export default defineConfig(config);
0 commit comments