Fix incorrect expect

This commit is contained in:
John Lees-Miller 2020-01-27 10:45:31 +00:00
parent f0d59bc192
commit 59156ec89e

View file

@ -24,7 +24,7 @@ exports.expectError = function OErrorExpectError (e, expected) {
expect(e.toString()).to.equal(expected.message)
// stack should start with the default error message formatting
expect(e.stack.split('\n')[0], expected.name)
expect(e.stack.split('\n')[0]).to.match(new RegExp(`^${expected.name}:`))
// first stack frame should be the function where the error was thrown
expect(e.stack.split('\n')[1]).to.match(expected.firstFrameRx)