Skip to content

Commit

Permalink
update test-watch script (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakotaJang authored and Jason3S committed Dec 24, 2019
1 parent 5fadcc6 commit 6829781
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/cspell-glob/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"clean": "rimraf lib",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-io/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"clean": "rimraf dist",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"tscv": "tsc -v",
"coverage": "npm run generate-code-coverage",
"generate-code-coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"prepublishOnly": "npm run lint && npm run clean-build && npm test",
"test": "jest"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"clean": "rimraf dist && rimraf temp",
"lint": "tslint --project tsconfig.json",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-trie-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest",
"watch": "tsc -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-trie/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest",
"watch": "tsc -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-trie2-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest",
"watch": "tsc -w"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell-util-bundle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"clean": "rimraf dist",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"test": "jest"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cspell/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"coverage": "jest --coverage",
"generate-code-coverage": "NODE_ENV=test nyc --silent --no-clean --temp-dir=../../.nyc_output npm run test-ts",
"test-ts": "../../node_modules/.bin/jest",
"test-watch": "../../node_modules/.bin/jest --watch",
"test-watch": "jest --watch",
"prepublishOnly": "npm run lint && npm run clean-build && npm test",
"test": "jest"
},
Expand Down

0 comments on commit 6829781

Please sign in to comment.