Files
cypress/system-tests/projects/plugins-function-sync-error/cypress.config.js
2022-02-21 17:07:46 -05:00

13 lines
225 B
JavaScript

module.exports = {
e2e: {
supportFile: false,
setupNodeEvents (on, config) {
const err = new Error('Function sync error from plugins file')
err.name = 'FunctionSyncError'
throw err
},
},
}