cypress/plugins/index.js | |||
1 | 1 | // Cypress Plugin File (cypress/plugin/index.js) | |
2 | 2 | module.exports = (on, config) => { | |
3 | 3 | // `on` is used to hook into various events Cypress emits | |
4 | 4 | // `config` is the resolved Cypress config | |
5 | + | require("@deploysentinel/cypress-debugger/plugin")(on, config); | |
5 | 6 | return config; | |
6 | 7 | }; |
cypress/support/index.js | |||
1 | 1 | // Cypress Support File (cypress/support/index.js) | |
2 | 2 | import './commands'; | |
3 | + | import '@deploysentinel/cypress-debugger/support'; |