From d0b213a36cd8ddc43bc1b6f5e2409553c86256c0 Mon Sep 17 00:00:00 2001 From: KenTandrian Date: Tue, 17 Feb 2026 11:07:40 +0700 Subject: [PATCH] feat(test): implement parallel test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 7755b15e0..c68484719 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "start:production": "npm run database:migrate && npm run database:seed && node main", "start:server": "nx run api:copy-assets && nx run api:serve --watch", "start:storybook": "nx run ui:storybook", - "test": "npm run test:api && npm run test:common", + "test": "npx dotenv-cli -e .env.example -- npx nx run-many --target=test --all --parallel=4", "test:api": "npx dotenv-cli -e .env.example -- nx test api", "test:common": "npx dotenv-cli -e .env.example -- nx test common", "test:ui": "npx dotenv-cli -e .env.example -- nx test ui",