You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+14-16
Original file line number
Diff line number
Diff line change
@@ -32,43 +32,41 @@ If your application is loaded Istanbul-instrumented source code, then the covera
32
32
33
33

34
34
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
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.
51
40
52
41
Install the plugin
53
42
54
43
```
55
44
npm i -D babel-plugin-istanbul
56
45
```
57
46
58
-
and set in your `.babelrc` file
47
+
Set your `.babelrc` file
59
48
60
49
```rc
61
50
{
62
51
"plugins": ["istanbul"]
63
52
}
64
53
```
65
54
55
+
Put the following in `cypress/plugins/index.js` file to use `.babelrc` file
0 commit comments