Skip to content

Commit

Permalink
test: reconfigure test for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jooy2 committed Nov 1, 2023
1 parent 5e23644 commit 8b3aba3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
import { defineConfig } from '@playwright/test'

export default defineConfig({
outputDir: 'tests/results'
outputDir: 'tests/results',
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
timeout: 60000,
expect: {
timeout: 10000
}
})

0 comments on commit 8b3aba3

Please sign in to comment.