overleaf/libraries/o-error/test/http.test.js
2020-04-17 15:45:08 +01:00

30 lines
635 B
JavaScript

const HttpErrors = require('../http')
const { expectError } = require('./support')
describe('OError/http', function () {
it('is a valid OError', function () {
function foo() {
throw new HttpErrors.ConflictError()
}
try {
foo()
} catch (error) {
expectError(error, {
name: 'ConflictError',
klass: HttpErrors.ConflictError,
message: 'ConflictError: Conflict',
firstFrameRx: /foo/,
})
}
})
it('has status code', function () {
try {
throw new HttpErrors.ConflictError()
} catch (e) {
expect(e.statusCode).to.equal(409)
}
})
})