From 6bf49874b720388a1702d046ccc01541a4bb5727 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 28 Jan 2021 08:59:02 +0100 Subject: [PATCH] Correct testwatch script --- implementations/javascript/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/javascript/package.json b/implementations/javascript/package.json index d947e1a..69939aa 100644 --- a/implementations/javascript/package.json +++ b/implementations/javascript/package.json @@ -26,7 +26,7 @@ "prepare": "npx tsc && npx rollup -c", "rollupwatch": "npx rollup -c -w", "test": "npx jest", - "testwatch": "npx jest -w", + "testwatch": "npx jest --watch", "veryclean": "npm run clean && rm -rf node_modules", "watch": "npx tsc -w" },