Skip to content

Commit 8b3613e

Browse files
committed
prettier fix
1 parent 08e4f6b commit 8b3613e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

client/playwright.config.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff 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('/')`. */

0 commit comments

Comments
 (0)