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
This commit is contained in:
Ronan Jouchet 2021-05-29 19:58:46 -04:00
parent d6730f7022
commit 2b780e6c67
1 changed files with 1 additions and 1 deletions

View File

@ -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\""