mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
const OError = require('..')
|
|
const HttpErrors = require('../http')
|
|
|
|
describe('OError/http', function () {
|
|
it('is instance of OError', function () {
|
|
try {
|
|
throw new HttpErrors.ConflictError()
|
|
} catch (e) {
|
|
expect(e).to.be.instanceof(OError)
|
|
}
|
|
})
|
|
|
|
it('has status code', function () {
|
|
try {
|
|
throw new HttpErrors.ConflictError()
|
|
} catch (e) {
|
|
expect(e.statusCode).to.equal(409)
|
|
}
|
|
})
|
|
})
|