UNPKG

apisearch

Version:
11 lines (9 loc) 323 B
import { expect } from 'chai'; import {ForbiddenError} from "../../src/Error/ForbiddenError"; describe('ForbiddenError()', () => { describe('', () => { it('Should return transportable http error', () => { expect(ForbiddenError.getTransportableHTTPError()).to.be.equal(403); }); }); });