From 0faf977110f7e99ee774687f2b6df61b89ffe2e9 Mon Sep 17 00:00:00 2001 From: Sam Date: Sat, 10 Jan 2026 11:28:56 +0000 Subject: [PATCH 1/3] fix: incorrect test watch mode instruction is fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a84a17..aa4aaab 100644 --- a/README.md +++ b/README.md @@ -962,5 +962,5 @@ npm test Run the tests with a continuous test runner ```bash -npm test -- --watch +npx vitest --watch ``` From c09b182869ac064c993a4838066483cddb6570b5 Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 11 Jan 2026 09:24:14 +0000 Subject: [PATCH 2/3] test script is updated with vitest run --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5ebfd60..494289b 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "scripts": { "clean": "xargs -a .gitignore rm -rf", "lint": "eslint lib v1 draft-* openapi-* bundle annotations", - "test": "vitest --watch=false", + "test": "vitest run", "check-types": "tsc --noEmit" }, "repository": { From 35eb3a3e9b2f5f640164a9789271d1733c1b7b4f Mon Sep 17 00:00:00 2001 From: Sam Date: Sun, 11 Jan 2026 17:17:02 +0000 Subject: [PATCH 3/3] README.md file is reverted --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aa4aaab..2a84a17 100644 --- a/README.md +++ b/README.md @@ -962,5 +962,5 @@ npm test Run the tests with a continuous test runner ```bash -npx vitest --watch +npm test -- --watch ```