summaryrefslogtreecommitdiff
path: root/tst/http_status.test.ts
blob: 09d6790ad75a6a1182407c073c0a237bea24a44f (plain) (blame)
1
2
3
4
5
6
7
8
9
import { HttpStatusCodes } from '../lib/index';

describe('server/http/status', () => {
    test('contains common status codes', () => {
        expect(HttpStatusCodes[200]).toBe('OK');
        expect(HttpStatusCodes[404]).toBe('Not Found');
        expect(HttpStatusCodes[500]).toBe('Internal Server Error');
    });
});