Skip to content

Commit

Permalink
ci: fail e2e faster
Browse files Browse the repository at this point in the history
We don't have anything that should take more than a few seconds, and
closing the electron app in the CI is prone to timeout
  • Loading branch information
filipesilva committed Feb 21, 2022
1 parent 72cfe9c commit 1f10d69
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 @@ -15,7 +15,7 @@ const outputDir = path.join(__dirname, 'test-results');
const config: PlaywrightTestConfig = {
outputDir,
testDir: './test/e2e',
timeout: 30000,
timeout: 10000,
globalTimeout: 5400000,
workers: process.env.CI ? 1 : undefined,
forbidOnly: !!process.env.CI,
Expand Down

0 comments on commit 1f10d69

Please sign in to comment.