Skip to content

Commit

Permalink
fix(test): double test timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
atticusofsparta committed Jan 14, 2025
1 parent 2359b5b commit 4a52b81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/web/src/App.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('ESM browser validation', () => {
},
{
interval: 5_000,
timeout: 60_000,
timeout: 120_000,
},
);

Expand All @@ -45,7 +45,7 @@ describe('ESM browser validation', () => {
},
{
interval: 5_000,
timeout: 60_000,
timeout: 120_000,
},
);

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/web/vitest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default defineConfig({
test: {
environment: 'jsdom',
globals: true,
testTimeout: 60000,
testTimeout: 120_000,
},
resolve: {
/**
Expand Down

0 comments on commit 4a52b81

Please sign in to comment.