We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e7f19d commit 2e64e97Copy full SHA for 2e64e97
examples/fullstack/cypress/integration/spec.js
@@ -11,6 +11,6 @@ it('uses frontend code and calls backend', () => {
11
.invoke('sub', 2, 3)
12
.should('equal', -1)
13
14
- cy.log('** backend request **')
+ cy.log('**backend request**')
15
cy.request('/hello')
16
})
examples/fullstack/cypress/plugins/index.js
@@ -1,5 +1,6 @@
1
module.exports = (on, config) => {
2
require('../../../../task')(on, config)
3
- on('file:preprocessor', require('../../../../use-babelrc'))
+ // instrument loaded spec files (and the application code loaded from them)
4
+ on('file:preprocessor', require('../../../../use-browserify-istanbul'))
5
return config
6
}
0 commit comments