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({
2323 /* Opt out of parallel tests on CI. */
2424 workers : process . env . CI ? 1 : undefined ,
2525 /* 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" ] ] ,
3133 /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
3234 use : {
3335 /* Base URL to use in actions like `await page.goto('/')`. */
You can’t perform that action at this time.
0 commit comments