From f27bda85a1547b971b2307d4685e92cbae87060d Mon Sep 17 00:00:00 2001 From: Trezy Date: Mon, 2 Sep 2024 22:36:34 -0500 Subject: [PATCH] ci: fix package scripts --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 9b4ed2a3..551ef93b 100644 --- a/package.json +++ b/package.json @@ -45,8 +45,8 @@ "prerelease": "npm run test:lint && npm run build", "release": "xs bump,publish,git-push", "test": "tsc --project tsconfig.test.json && vitest run", - "test:e2e": "tsc --project tsconfig.test.json && vitest run --project e2e", - "test:unit": "tsc --project tsconfig.test.json && vitest run --project unit", + "test:e2e": "tsc --project tsconfig.test.json && vitest run e2e", + "test:unit": "tsc --project tsconfig.test.json && vitest run unit", "test:lint": "xs lint", "test:watch": "vitest" },