Skip to content

Commit c18a859

Browse files
committed
feat: move log messages to DEBUG=cypress-istanbul, close #9
1 parent 00fff2b commit c18a859

File tree

4 files changed

+71
-11
lines changed

4 files changed

+71
-11
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,14 @@ Now the code coverage from spec files will be combined with end-to-end coverage.
6565

6666
## Examples
6767

68+
- [cypress-example-todomvc-redux](https://github.com/cypress-io/cypress-example-todomvc-redux)
6869
- Read ["Code Coverage by Parcel Bundler"](https://glebbahmutov.com/blog/code-coverage-by-parcel/) blog post
6970
- Read ["Combined End-to-end and Unit Test Coverage"](https://glebbahmutov.com/blog/combined-end-to-end-and-unit-test-coverage/)
7071

72+
## Debugging
73+
74+
Run tests with `DEBUG=cypress-istanbul` environment variable to see log messages
75+
7176
## License
7277

7378
This project is licensed under the terms of the [MIT license](/LICENSE.md).

package-lock.json

+56-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"*.js"
3737
],
3838
"dependencies": {
39-
"@cypress/browserify-preprocessor": "2.1.0"
39+
"@cypress/browserify-preprocessor": "2.1.0",
40+
"debug": "4.1.1"
4041
},
4142
"devDependencies": {
4243
"@babel/core": "7.4.4",

task.js

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const istanbul = require('istanbul-lib-coverage')
22
const { join } = require('path')
33
const { existsSync, mkdirSync, readFileSync, writeFileSync } = require('fs')
44
const execa = require('execa')
5+
const debug = require('debug')('cypress-istanbul')
56

67
// these are standard folder and file names used by NYC tools
78
const outputFolder = '.nyc_output'
@@ -11,7 +12,7 @@ const nycFilename = join(coverageFolder, 'out.json')
1112
function saveCoverage (coverage) {
1213
if (!existsSync(coverageFolder)) {
1314
mkdirSync(coverageFolder)
14-
console.log('created folder %s for output coverage', coverageFolder)
15+
debug('created folder %s for output coverage', coverageFolder)
1516
}
1617

1718
writeFileSync(nycFilename, JSON.stringify(coverage, null, 2))
@@ -29,7 +30,7 @@ module.exports = {
2930
*/
3031
resetCoverage ({ isInteractive }) {
3132
if (isInteractive) {
32-
console.log('reset code coverage in interactive mode')
33+
debug('reset code coverage in interactive mode')
3334
const coverageMap = istanbul.createCoverageMap({})
3435
saveCoverage(coverageMap)
3536
}
@@ -54,7 +55,7 @@ module.exports = {
5455
const coverageMap = istanbul.createCoverageMap(previous)
5556
coverageMap.merge(coverage)
5657
saveCoverage(coverageMap)
57-
console.log('wrote coverage file %s', nycFilename)
58+
debug('wrote coverage file %s', nycFilename)
5859

5960
return null
6061
},
@@ -69,8 +70,10 @@ module.exports = {
6970
console.warn('Skipping coverage report')
7071
return null
7172
}
72-
console.log('saving coverage report')
73+
const command = 'nyc'
74+
const args = ['report', '--reporter=html']
75+
debug('saving coverage report using command: %s %s', command, args)
7376
// should we generate report via NYC module API?
74-
return execa('nyc', ['report', '--reporter=html'], { stdio: 'inherit' })
77+
return execa(command, args, { stdio: 'inherit' })
7578
}
7679
}

0 commit comments

Comments
 (0)