0.0.2 • Published 5 years ago

jest-supertest-matchers v0.0.2

Weekly downloads
62
License
ISC
Repository
github
Last release
5 years ago

jest-supertest-matchers

Code Climate Issue Count Build Status

Setup

import app from '../app';
import matchers from 'jest-supertest-matchers';
import request from 'supertest';

// inside tests
beforeAll(() => {
  expect.extend(matchers);
});

it('example', async () => {
  const res = await request(app).get('/');
  expect(res).toHaveHTTPStatus(200);
});