mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
handle custom errors created without info
This commit is contained in:
parent
5bf235c549
commit
7bb8a5bd11
2 changed files with 14 additions and 1 deletions
|
@ -30,8 +30,10 @@ class ErrorTypeError extends Error {
|
|||
constructor ({ message, info }) {
|
||||
super(message)
|
||||
this.name = this.constructor.name
|
||||
if (info) {
|
||||
this.info = info
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Wrap the given error, which caused this error.
|
||||
|
|
|
@ -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', () => {
|
||||
|
|
Loading…
Reference in a new issue