Skip to content

Commit

Permalink
increasing playwright test timeout to 25 min for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
sagely1 authored Dec 12, 2023
1 parent 0bcaf02 commit 86eff0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './tests',
// timeout for every test
timeout: 5 * 60 * 1000,
timeout: 25 * 60 * 1000,
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
Expand Down

0 comments on commit 86eff0c

Please sign in to comment.