Skip to content

Commit 5342ac5

Browse files
committed
chore: avoid run build tests in parallel because rolldwon exit process is not immediate
1 parent 486bfbd commit 5342ac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
"typecheck": "tsc -p scripts --noEmit && pnpm -r --parallel run typecheck",
2626
"test": "run-s test-serve test-build",
2727
"test-serve": "vitest run -c vitest.config.e2e.ts",
28-
"test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
28+
"test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts --no-file-parallelism",
2929
"test-unit": "vitest run",
3030
"test-docs": "pnpm run docs-build",
3131
"debug-serve": "VITE_DEBUG_SERVE=1 vitest run -c vitest.config.e2e.ts",
32-
"debug-build": "VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 vitest run -c vitest.config.e2e.ts",
32+
"debug-build": "VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 vitest run -c vitest.config.e2e.ts --no-file-parallelism",
3333
"docs": "pnpm --filter=docs run docs",
3434
"docs-build": "pnpm --filter=docs run docs-build",
3535
"docs-serve": "pnpm --filter=docs run docs-serve",

0 commit comments

Comments
 (0)