Skip to content

Commit 4f4945d

Browse files
committed
fff
1 parent f45d51a commit 4f4945d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ workflows:
167167
# we will check the final coverage report
168168
# to make sure it only has files we are interested in
169169
# because there are files covered at 0 in the report
170-
command: npm run coverage:check-files:windows
170+
command: npm i -D check-code-coverage && npm run coverage:check-files:windows
171171
working_directory: examples/old-cypress-config/all-files
172172

173173
- publish:

examples/old-cypress-config/all-files/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"test": "../node_modules/.bin/start-test 1234 cy:run",
1111
"coverage:verify": "npx nyc report --check-coverage true --lines 100",
1212
"coverage:check-files": "../node_modules/.bin/check-coverage main.js && ../node_modules/.bin/check-coverage second.js && ../node_modules/.bin/check-coverage not-covered.js && ../node_modules/.bin/only-covered --from coverage/coverage-final.json main.js second.js not-covered.js",
13-
"coverage:check-files:windows": "npx bin-up && ../node_modules/.bin/check-coverage main.js && ../node_modules/.bin/check-coverage second.js && ../node_modules/.bin/check-coverage not-covered.js && ../node_modules/.bin/only-covered --from coverage/coverage-final.json main.js second.js not-covered.js"
13+
"coverage:check-files:windows": "check-coverage main.js && check-coverage second.js && check-coverage not-covered.js && only-covered --from coverage/coverage-final.json main.js second.js not-covered.js"
1414
},
1515
"nyc": {
1616
"all": true,

0 commit comments

Comments
 (0)