@@ -100,8 +100,8 @@ workflows:
100100 - run :
101101 name : Check code coverage 📈
102102 command : |
103- node ../../scripts /check-coverage server.js
104- node ../../scripts /only-covered server.js
103+ ../../node_modules/.bin /check-coverage server.js
104+ ../../node_modules/.bin /only-covered server.js
105105 working_directory : examples/backend
106106
107107 - cypress/run :
@@ -130,10 +130,10 @@ workflows:
130130 - run :
131131 name : Check code coverage 📈
132132 command : |
133- node ../../scripts /check-coverage fullstack/server/server.js
134- node ../../scripts /check-coverage fullstack/main.js
135- node ../../scripts /check-coverage fullstack/string-utils.js
136- node ../../scripts /only-covered server.js main.js string-utils.js
133+ ../../node_modules/.bin /check-coverage fullstack/server/server.js
134+ ../../node_modules/.bin /check-coverage fullstack/main.js
135+ ../../node_modules/.bin /check-coverage fullstack/string-utils.js
136+ ../../node_modules/.bin /only-covered server.js main.js string-utils.js
137137 working_directory : examples/fullstack
138138
139139 - cypress/run :
@@ -161,8 +161,8 @@ workflows:
161161 - run :
162162 name : Check code coverage 📈
163163 command : |
164- node ../../scripts /check-coverage main.js
165- node ../../scripts /only-covered main.js
164+ ../../node_modules/.bin /check-coverage main.js
165+ ../../node_modules/.bin /only-covered main.js
166166 working_directory : examples/before-each-visit
167167
168168 - cypress/run :
@@ -190,8 +190,8 @@ workflows:
190190 - run :
191191 name : Check code coverage 📈
192192 command : |
193- node ../../scripts /check-coverage main.js
194- node ../../scripts /only-covered main.js
193+ ../../node_modules/.bin /check-coverage main.js
194+ ../../node_modules/.bin /only-covered main.js
195195 working_directory : examples/before-all-visit
196196
197197 - cypress/run :
@@ -218,8 +218,8 @@ workflows:
218218 - run :
219219 name : Check code coverage 📈
220220 command : |
221- node ../../scripts /check-coverage main.ts
222- node ../../scripts /only-covered main.ts
221+ ../../node_modules/.bin /check-coverage main.ts
222+ ../../node_modules/.bin /only-covered main.ts
223223 working_directory : examples/ts-example
224224
225225 - cypress/run :
@@ -250,9 +250,9 @@ workflows:
250250 - run :
251251 name : Check code coverage 📈
252252 command : |
253- node ../../scripts /check-coverage main.js
254- node ../../scripts /check-coverage unit-utils.js
255- node ../../scripts /only-covered main.js unit-utils.js
253+ ../../node_modules/.bin /check-coverage main.js
254+ ../../node_modules/.bin /check-coverage unit-utils.js
255+ ../../node_modules/.bin /only-covered main.js unit-utils.js
256256 working_directory : examples/same-folder
257257
258258 - cypress/run :
@@ -282,8 +282,8 @@ workflows:
282282 - run :
283283 name : Check code coverage 📈
284284 command : |
285- node ../../scripts /check-coverage main.js
286- node ../../scripts /only-covered main.js
285+ ../../node_modules/.bin /check-coverage main.js
286+ ../../node_modules/.bin /only-covered main.js
287287 working_directory : examples/support-files
288288
289289 - cypress/run :
@@ -311,8 +311,8 @@ workflows:
311311 - run :
312312 name : Check code coverage 📈
313313 command : |
314- node ../../scripts /check-coverage main.js
315- node ../../scripts /only-covered main.js
314+ ../../node_modules/.bin /check-coverage main.js
315+ ../../node_modules/.bin /only-covered main.js
316316 working_directory : examples/use-plugins-and-support
317317
318318 - cypress/run :
@@ -340,8 +340,8 @@ workflows:
340340 - run :
341341 name : Check code coverage 📈
342342 command : |
343- node ../../scripts /check-coverage main.js
344- node ../../scripts /only-covered main.js
343+ ../../node_modules/.bin /check-coverage main.js
344+ ../../node_modules/.bin /only-covered main.js
345345 working_directory : examples/one-spec
346346
347347 - publish :
0 commit comments