From 27d79b574eaf3c51343d5020cc6a7229312c4eef Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Sat, 27 May 2023 14:15:38 +0200 Subject: [PATCH] Correct test:watch command so that it actually watches --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 12c09565..7aa5d956 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "build": "npm run types && vite build && node scripts/replace-version.mjs", "build:dist": "npm run build && node scripts/create-dist-file.mjs", "test": "vitest run --run", - "test:watch": "vitest run --watch", + "test:watch": "vitest --watch", "test:ci": "npm run test -- --coverage", "test:verbose": "npm run test -- --verbose" },