Skip to content

Commit 458a4f7

Browse files
style: standardize quotation marks in playwright.config.ts
1 parent 8f63cbb commit 458a4f7

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

playwright.config.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
import { defineConfig } from '@playwright/test';
1+
import { defineConfig } from "@playwright/test";
22

33
export default defineConfig({
44
webServer: {
5-
command: 'npm run dev',
5+
command: "npm run dev",
66
port: 3000,
77
reuseExistingServer: true,
88
},
9-
reporter: [
10-
['list'],
11-
['html', { outputFolder: 'playwright-report' }]
12-
],
9+
workers: 4, // Specify the number of workers
10+
reporter: [["list"], ["html", { outputFolder: "playwright-report" }]],
1311
});

0 commit comments

Comments
 (0)