File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,11 @@ export default defineConfig({
18
18
/* Retry on CI only */
19
19
retries : process . env . CI ? 2 : 0 ,
20
20
/* Opt out of parallel tests on CI. */
21
- workers : process . env . CI ? 2 : undefined ,
21
+ workers : process . env . CI ? 1 : undefined ,
22
22
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
23
- reporter : process . env . CI ? 'dot' : [ [ 'html' , { open : 'never' } ] ] ,
23
+ reporter : process . env . CI
24
+ ? [ [ 'github' ] , [ 'html' , { outputFolder : 'playwright-report' } ] ]
25
+ : [ [ 'html' , { open : 'never' } ] ] ,
24
26
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
25
27
use : {
26
28
/* Base URL to use in actions like `await page.goto('/')`. */
@@ -73,5 +75,6 @@ export default defineConfig({
73
75
command : 'pnpm start' ,
74
76
url : 'http://127.0.0.1:4200' ,
75
77
reuseExistingServer : ! process . env . CI ,
78
+ timeout : 5 * 60 * 1000 ,
76
79
} ,
77
80
} ) ;
You can’t perform that action at this time.
0 commit comments