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 5243d27 commit 3ce1a0fCopy full SHA for 3ce1a0f
package.json
@@ -13,8 +13,10 @@
13
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
14
"lint:fix": "eslint . --ext ts,tsx ",
15
"format": "prettier --write ./src",
16
- "test": "npx playwright install && vitest",
17
- "coverage": "npx playwright install && vitest run --coverage"
+ "test:install-deps": "npx playwright install && npx playwright install-deps",
+ "test": "npm run test:install-deps && vitest",
18
+ "test:ci": "npm run test:install-deps && vitest --browser.name=chromium --browser.headless --no-watch",
19
+ "coverage": "npm run test:install-deps && vitest run --coverage"
20
},
21
"dependencies": {
22
"@emotion/react": "^11.11.4",
0 commit comments