mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-10 16:50:03 -06:00
13 lines
225 B
JavaScript
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
|
|
},
|
|
},
|
|
}
|