working through mapping error cases from develop

This commit is contained in:
Tim Griesser
2022-02-21 17:07:46 -05:00
parent d3b1969a75
commit 7e8370a2a5
18 changed files with 103 additions and 77 deletions

View File

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

View File

@@ -1,7 +0,0 @@
module.exports = (on, config) => {
const err = new Error('Function sync error from plugins file')
err.name = 'FunctionSyncError'
throw err
}