Skip to content

Commit 4147221

Browse files
authored
chore: tweak test commands (#2319)
* hide the hideous warnings about punycode * remove weird min/max threads flags on ci test command
1 parent 636fed3 commit 4147221

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lintBuildTest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Lint
4646
run: npm run lint
4747
- name: Test
48-
run: VITEST_MAX_THREADS=1 VITEST_MIN_THREADS=1 npm run test run
48+
run: npm test run
4949
- name: Build
5050
run: npm run build
5151
playwright:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"build": "vite build",
1818
"ci": "npm run tsc && npm run lint && npm run test run && npm run e2ec",
1919
"tsc": "tsc",
20-
"test": "vitest",
20+
"test": "NODE_OPTIONS='--no-deprecation' vitest",
2121
"e2e": "playwright test",
2222
"e2ec": "playwright test --project=chrome",
2323
"lint": "eslint --ext .js,.ts,.tsx app test mock-api",

0 commit comments

Comments
 (0)