We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fee810 commit ee7c2ebCopy full SHA for ee7c2eb
binci.yml
@@ -26,6 +26,9 @@ tasks:
26
test: |
27
node ./scripts/postgres_conn.js
28
yarn run test
29
+ test:watch: |
30
+ node ./scripts/postgres_conn.js
31
+ yarn run test:watch
32
cover: |
33
34
yarn run cover
package.json
@@ -18,6 +18,7 @@
18
"author": "TechnologyAdvice <devteam@technologyadvice.com>",
19
"scripts": {
20
"test": "yarn run lint && yarn run cover",
21
+ "test:watch": "nodemon --exec \"./node_modules/.bin/mocha ./test/src || exit 1\"",
22
"clean": "rm -rf ./node_modules rm -rf ./build",
23
"mocha": "mocha ./test/src --recursive",
24
"cover": "istanbul cover ./node_modules/.bin/_mocha ./test/src",
0 commit comments