From a49d24b021fe2aff75389275f06221921380e440 Mon Sep 17 00:00:00 2001 From: Juan Rodriguez Date: Sat, 2 May 2026 16:20:50 -0500 Subject: [PATCH] fix: update test command in package.json to allow passing with no tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ebd37fe..b462d5d 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "lint:check": "eslint . --ext .ts", "format": "prettier --write .", "typecheck": "pnpm -r typecheck", - "test": "vitest run", + "test": "vitest run --passWithNoTests", "test:watch": "vitest", "coverage": "vitest run --coverage", "prerelease": "pnpm run typecheck && pnpm run lint:check && pnpm run test",