File tree 14 files changed +246
-4
lines changed
14 files changed +246
-4
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,33 @@ workflows:
168
168
command : npm run coverage:check
169
169
working_directory : examples/ts-example
170
170
171
+ - cypress/run :
172
+ attach-workspace : true
173
+ name : example-same-folder
174
+ requires :
175
+ - cypress/install
176
+ # there are no jobs to follow this one
177
+ # so no need to save the workspace files (saves time)
178
+ no-workspace : true
179
+ command : npx cypress run --project examples/same-folder
180
+ # store screenshots and videos
181
+ store_artifacts : true
182
+ post-steps :
183
+ - run : cat examples/same-folder/.nyc_output/out.json
184
+ # store the created coverage report folder
185
+ # you can click on it in the CircleCI UI
186
+ # to see live static HTML site
187
+ - store_artifacts :
188
+ path : examples/same-folder/coverage
189
+ # make sure the examples captures 100% of code
190
+ - run :
191
+ command : npx nyc report --check-coverage true --lines 100
192
+ working_directory : examples/same-folder
193
+ # how to fail if the specific file coverage is not found?!
194
+ - run :
195
+ command : npx nyc report --check-coverage true --lines 100 --include unit-utils.js
196
+ working_directory : examples/same-folder
197
+
171
198
- publish :
172
199
filters :
173
200
branches :
@@ -181,3 +208,4 @@ workflows:
181
208
- example-before-each-visit
182
209
- example-before-all-visit
183
210
- example-ts-example
211
+ - example-same-folder
Original file line number Diff line number Diff line change
1
+ {
2
+ "plugins" : [" istanbul" ]
3
+ }
Original file line number Diff line number Diff line change
1
+ # example: same-folder
2
+
3
+ Check if test files are correctly filtered out
Original file line number Diff line number Diff line change
1
+ {
2
+ "integrationFolder" : " ." ,
3
+ "testFiles" : " **/spec.js" ,
4
+ "supportFile" : " support.js" ,
5
+ "pluginsFile" : " plugins.js"
6
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " Using fixtures to represent data" ,
3
+ "email" : " hello@cypress.io" ,
4
+ "body" : " Fixtures are a great way to mock data for responses to routes"
5
+ }
Original file line number Diff line number Diff line change
1
+ < body >
2
+ Page body
3
+ < script src ="main-instrumented.js "> </ script >
4
+ </ body >
Original file line number Diff line number Diff line change
1
+ window . add = ( a , b ) => a + b
2
+
3
+ window . sub = ( a , b ) => a - b
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " example-same-folder" ,
3
+ "description" : " Check if test files are correctly filtered out" ,
4
+ "devDependencies" : {},
5
+ "scripts" : {
6
+ "cy:open" : " ../../node_modules/.bin/cypress open"
7
+ }
8
+ }
Original file line number Diff line number Diff line change
1
+ module . exports = ( on , config ) => {
2
+ on ( 'task' , require ( '../../task' ) )
3
+ on ( 'file:preprocessor' , require ( '../../use-babelrc' ) )
4
+ }
Original file line number Diff line number Diff line change
1
+ /// <reference types="cypress" />
2
+
3
+ import { reverse } from './unit-utils'
4
+
5
+ describe ( 'coverage information' , ( ) => {
6
+ before ( ( ) => {
7
+ cy . log ( 'visiting index.html' )
8
+ cy . visit ( 'index.html' )
9
+ } )
10
+
11
+ it ( 'calls add' , ( ) => {
12
+ cy . window ( )
13
+ . invoke ( 'add' , 2 , 3 )
14
+ . should ( 'equal' , 5 )
15
+ } )
16
+
17
+ it ( 'calls sub' , ( ) => {
18
+ cy . window ( )
19
+ . invoke ( 'sub' , 2 , 3 )
20
+ . should ( 'equal' , - 1 )
21
+ } )
22
+
23
+ it ( 'reverses a string' , ( ) => {
24
+ expect ( reverse ( 'Hello' ) ) . to . equal ( 'olleH' )
25
+ } )
26
+ } )
Original file line number Diff line number Diff line change
1
+ import '../../support'
Original file line number Diff line number Diff line change
1
+ export const reverse = s =>
2
+ s
3
+ . split ( '' )
4
+ . reverse ( )
5
+ . join ( '' )
Original file line number Diff line number Diff line change @@ -134,8 +134,6 @@ if (Cypress.env('coverage') === false) {
134
134
135
135
after ( function mergeUnitTestCoverage ( ) {
136
136
// collect and merge frontend coverage
137
- const specFolder = Cypress . config ( 'integrationFolder' )
138
- const supportFolder = Cypress . config ( 'supportFolder' )
139
137
140
138
// if spec bundle has been instrumented (using Cypress preprocessor)
141
139
// then we will have unit test coverage
@@ -145,10 +143,12 @@ if (Cypress.env('coverage') === false) {
145
143
if ( unitTestCoverage ) {
146
144
// remove coverage for the spec files themselves,
147
145
// only keep "external" application source file coverage
146
+ const supportFile = Cypress . config ( 'supportFile' )
147
+ const testFilePattern = Cypress . config ( 'testFiles' )
148
148
149
- // does this handle unset support file?
150
149
const isTestFile = ( fileCoverage , filename ) =>
151
- filename . startsWith ( specFolder ) || filename . startsWith ( supportFolder )
150
+ Cypress . minimatch ( filename , testFilePattern ) || filename === supportFile
151
+
152
152
const coverage = Cypress . _ . omitBy ( window . __coverage__ , isTestFile )
153
153
sendCoverage ( coverage , 'unit' )
154
154
}
You can’t perform that action at this time.
0 commit comments