From 8352980f014743625f5058cd73d5c3abdd69a518 Mon Sep 17 00:00:00 2001 From: Tommaso Sciortino Date: Sat, 25 Oct 2025 09:07:35 -0700 Subject: [PATCH] Remove non-existent parallel flag. (#12018) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ae3bdfa852..b283480a3f 100644 --- a/package.json +++ b/package.json @@ -34,8 +34,8 @@ "build:packages": "npm run build --workspaces", "build:sandbox": "node scripts/build_sandbox.js", "bundle": "npm run generate && node esbuild.config.js && node scripts/copy_bundle_assets.js", - "test": "npm run test --workspaces --if-present --parallel", - "test:ci": "npm run test:ci --workspaces --if-present --parallel && npm run test:scripts", + "test": "npm run test --workspaces --if-present", + "test:ci": "npm run test:ci --workspaces --if-present && npm run test:scripts", "test:scripts": "vitest run --config ./scripts/tests/vitest.config.ts", "test:e2e": "cross-env VERBOSE=true KEEP_OUTPUT=true npm run test:integration:sandbox:none", "test:integration:all": "npm run test:integration:sandbox:none && npm run test:integration:sandbox:docker && npm run test:integration:sandbox:podman",