Merge pull request #3 from overleaf/ta-info-undefined

Handle Custom Errors Created Without Info
This commit is contained in:
Timothée Alby 2019-07-04 10:40:02 +02:00 committed by GitHub
commit c63cc52fda
2 changed files with 14 additions and 1 deletions

View file

@ -30,7 +30,9 @@ class ErrorTypeError extends Error {
constructor ({ message, info }) {
super(message)
this.name = this.constructor.name
this.info = info
if (info) {
this.info = info
}
}
/**

View file

@ -95,6 +95,17 @@ describe('errorType.Error', () => {
)
}
})
it('handles a custom error without info', () => {
try {
throw new CustomError1({})
expect.fail('should have thrown')
} catch (e) {
expect(errorType.getFullInfo(e)).to.deep.equal({})
let infoKey = Object.keys(e).find(k => k === 'info')
expect(infoKey).to.not.exist
}
})
})
describe('errorType.ErrorWithStatusCode', () => {