Skip to content

Commit 8a00ed6

Browse files
authored
feat: add babelrc helper script (#8)
* feat: add babelrc helper script * add unit test * print summary
1 parent fd6586f commit 8a00ed6

File tree

8 files changed

+1146
-516
lines changed

8 files changed

+1146
-516
lines changed

.circleci/config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ workflows:
1616
# to see live static HTML site
1717
- store_artifacts:
1818
path: coverage
19+
# print code coverage summary to the terminal
20+
- run: npx nyc report
1921
# publish new version if necessary
2022
- run: npm run semantic-release
2123

README.md

+14-16
Original file line numberDiff line numberDiff line change
@@ -32,43 +32,41 @@ If your application is loaded Istanbul-instrumented source code, then the covera
3232

3333
![Coverage report](images/coverage.jpg)
3434

35-
## Instrument unit tests
36-
37-
If you test your application code directly from `specs` you might want to instrument them and combine unit test code coverage with any end-to-end code coverage (from iframe). You can easily instrument spec files using [babel-plugin-istanbul](https://github.com/istanbuljs/babel-plugin-istanbul) for example. Put the following in `cypress/plugins/index.js` file to use `.babelrc` file
38-
39-
```js
40-
const browserify = require('@cypress/browserify-preprocessor')
35+
That should be it!
4136

42-
module.exports = (on, config) => {
43-
on('task', require('cypress-istanbul/task'))
37+
## Instrument unit tests
4438

45-
// tell Cypress to use .babelrc when bundling spec code
46-
const options = browserify.defaultOptions
47-
options.browserifyOptions.transform[1][1].babelrc = true
48-
on('file:preprocessor', browserify(options))
49-
}
50-
```
39+
If you test your application code directly from `specs` you might want to instrument them and combine unit test code coverage with any end-to-end code coverage (from iframe). You can easily instrument spec files using [babel-plugin-istanbul](https://github.com/istanbuljs/babel-plugin-istanbul) for example.
5140

5241
Install the plugin
5342

5443
```
5544
npm i -D babel-plugin-istanbul
5645
```
5746

58-
and set in your `.babelrc` file
47+
Set your `.babelrc` file
5948

6049
```rc
6150
{
6251
"plugins": ["istanbul"]
6352
}
6453
```
6554

55+
Put the following in `cypress/plugins/index.js` file to use `.babelrc` file
56+
57+
```js
58+
module.exports = (on, config) => {
59+
on('task', require('cypress-istanbul/task'))
60+
on('file:preprocessor', require('cypress-istanbul/use-babelrc'))
61+
}
62+
```
63+
6664
Now the code coverage from spec files will be combined with end-to-end coverage.
6765

6866
## Examples
6967

70-
- [Demo battery app](https://github.com/bahmutov/demo-battery-api/tree/bundle) branch "bundle"
7168
- Read ["Code Coverage by Parcel Bundler"](https://glebbahmutov.com/blog/code-coverage-by-parcel/) blog post
69+
- Read ["Combined End-to-end and Unit Test Coverage"](https://glebbahmutov.com/blog/combined-end-to-end-and-unit-test-coverage/)
7270

7371
## License
7472

cypress/integration/spec.js

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// https://on.cypress.io/intelligent-code-completion
33
/// <reference types="Cypress" />
44

5+
import {add} from '../unit'
6+
57
context('Page test', () => {
68
beforeEach(() => {
79
cy.visit('/', {
@@ -17,3 +19,13 @@ context('Page test', () => {
1719
.should('have.been.calledWith', 'just names', ['joe', 'mary'])
1820
})
1921
})
22+
23+
context('Unit tests', () => {
24+
it('adds numbers', () => {
25+
expect(add(2, 3)).to.equal(5)
26+
})
27+
28+
it('concatenates strings', () => {
29+
expect(add('foo', 'Bar')).to.equal('fooBar')
30+
})
31+
})

cypress/plugins/index.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
module.exports = (on, config) => {
22
on('task', require('../../task'))
3+
4+
// also use .babelrc file when bundling spec files
5+
// to get the code coverage from unit tests
6+
// https://glebbahmutov.com/blog/combined-end-to-end-and-unit-test-coverage/
7+
on('file:preprocessor', require('../../use-babelrc'))
38
}

cypress/unit.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const add = (a, b) => a + b

0 commit comments

Comments
 (0)