We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f16c12 commit 58e9a82Copy full SHA for 58e9a82
package.json
@@ -70,7 +70,7 @@
70
"prepublishOnly": "npm run package",
71
"typecheck": "tsc --noEmit",
72
"prepare": "husky",
73
- "test:e2e:install": "npx playwright install --with-deps chromium",
+ "test:e2e:install": "npx playwright install --with-deps",
74
"test:e2e": "npx playwright test --config=playwright.config.ts"
75
},
76
"lint-staged": {
playwright.config.ts
@@ -22,6 +22,10 @@ const config: PlaywrightTestConfig = {
22
name: 'chromium',
23
use: {...devices['Desktop Chrome']},
24
25
+ {
26
+ name: 'safari',
27
+ use: {...devices['Desktop Safari']},
28
+ },
29
],
30
};
31
0 commit comments