From 2b780e6c6774f97231821b59e492ddd8713f0905 Mon Sep 17 00:00:00 2001 From: Ronan Jouchet Date: Sat, 29 May 2021 19:58:46 -0400 Subject: [PATCH] Test watcher: warn that it's necessary to run build:watch for the test watcher to work See https://github.com/nativefier/nativefier/pull/1204#issuecomment-850915981 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b3022f9..43a541e 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "test:integration": "jest --testRegex '.*integration-test.js'", "test:manual": "npm run build && ./.github/manual-test", "test:unit": "jest", - "test:watch": "jest --watch", + "test:watch": "echo 'Remember to run npm run build:watch for the test watcher to work!' && jest --watch", "test:withlog": "LOGLEVEL=trace npm run test", "test": "jest --testRegex '[-.]test\\.js$'", "watch": "npx concurrently \"npm:*:watch\""