From 8edb0763d1f4fd2e29dab9b1285bcd7b97b43383 Mon Sep 17 00:00:00 2001 From: Yuxuan Zhang Date: Thu, 4 Jan 2024 13:47:59 -0500 Subject: [PATCH] test script: use run-s instead of run-p for prettier console output, helps debug --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5c613b1a..d4d59acb 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "build:prepare": "rimraf dist && node scripts/copyShared", "build:client": "vue-tsc --noEmit -p src/client && tsc -p src/client && node scripts/copyClient", "build:node": "tsc -p src/node --noEmit && rollup --config rollup.config.ts --configPlugin esbuild", - "test": "run-p --aggregate-output test:unit test:e2e test:init", + "test": "run-s test:unit test:e2e test:init", "test:unit": "vitest run -r __tests__/unit", "test:unit:watch": "vitest -r __tests__/unit", "test:e2e": "run-s test:e2e-dev test:e2e-build",