Skip to content

Commit 675c124

Browse files
committed
aaa
1 parent 16be7c4 commit 675c124

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
# we will check the final coverage report
6262
# to make sure it only has files we are interested in
6363
# because there are files covered at 0 in the report
64-
command: npm run coverage:check-files
64+
command: npm run coverage:check-files:windows
6565
working_directory: examples/<< parameters.jobname >>
6666

6767
test-code-coverage-plugin:

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"pretest": "rimraf .nyc_output .cache coverage dist",
1010
"test": "../node_modules/.bin/start-test 1234 cy:run",
1111
"coverage:verify": "npx nyc report --check-coverage true --lines 100",
12-
"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"
12+
"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:widnows": "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"
1314
},
1415
"nyc": {
1516
"all": true,

0 commit comments

Comments
 (0)