From afb49507f8b7558d7cd512d2712b67f643910636 Mon Sep 17 00:00:00 2001 From: Remco Haszing Date: Thu, 29 Aug 2024 11:46:24 +0200 Subject: [PATCH] Fix the test-all script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vitest doesn’t have a flag `--forceExit`. This was a remnant from when Jest was used. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 99d2708..3f22878 100644 --- a/package.json +++ b/package.json @@ -67,7 +67,7 @@ "test-unit": "vitest run --coverage ./test/unit", "test-integration": "vitest run ./test/integration", "tsd": "tsd", - "test-all": "npm run tsd && vitest run --coverage --forceExit", + "test-all": "npm run tsd && vitest run --coverage", "test": "npm run tsd && npm run test-unit", "fix:formatting": "prettier --write .", "lint:formatting": "prettier --check ."