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
+3 -3
View File
@@ -19,9 +19,9 @@ describe('e2e plugins', function () {
expectedExitCode: 1,
onRun (exec) {
return exec().then(({ stdout }) => {
expect(stdout).to.include('We stopped running your tests because your config process crashed.')
expect(stdout).to.include('Your configFile threw an error from:')
expect(stdout).to.include('Error: Root async error from plugins file')
expect(stdout).to.include('We stopped running your tests because your config file crashed.')
expect(stdout).to.include('Your configFile threw an error from: cypress.config.js')
expect(stdout).to.include('Error: Root async error from config file')
})
},
})