File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,13 @@ export default defineConfig({
23
23
/* Opt out of parallel tests on CI. */
24
24
workers : process . env . CI ? 1 : undefined ,
25
25
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
26
- reporter : process . env . CI ? [
27
- [ "html" , { outputFolder : "playwright-report" } ] ,
28
- [ "json" , { outputFile : "results.json" } ] ,
29
- [ "line" ] ,
30
- ] : [ [ "line" ] ] ,
26
+ reporter : process . env . CI
27
+ ? [
28
+ [ "html" , { outputFolder : "playwright-report" } ] ,
29
+ [ "json" , { outputFile : "results.json" } ] ,
30
+ [ "line" ] ,
31
+ ]
32
+ : [ [ "line" ] ] ,
31
33
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
32
34
use : {
33
35
/* Base URL to use in actions like `await page.goto('/')`. */
You can’t perform that action at this time.
0 commit comments