chore: restore parallel test running

pull/2109/head
Divyansh Singh 1 year ago committed by GitHub
parent 456099a527
commit ccf3eea9f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,3 +4,4 @@ dist
pnpm-lock.yaml
cache
template
temp

@ -67,10 +67,12 @@
"format": "prettier --check --write .",
"format-fail": "prettier --check .",
"check": "run-s format-fail build test",
"test": "run-s test-unit test-e2e test-e2e-build test-init test-init-build",
"test": "run-p --aggregate-output test-unit test-e2e-seq test-init-seq",
"test-unit": "vitest run -r __tests__/unit",
"test-e2e-seq": "run-s test-e2e test-e2e-build",
"test-e2e": "vitest run -r __tests__/e2e",
"test-e2e-build": "VITE_TEST_BUILD=1 pnpm test-e2e",
"test-init-seq": "run-s test-init test-init-build",
"test-init": "vitest run -r __tests__/init",
"test-init-build": "VITE_TEST_BUILD=1 pnpm test-init",
"debug-e2e": "DEBUG=1 vitest -r __tests__/e2e",

Loading…
Cancel
Save