jest-supertest-matchers
v0.0.2
Published
[![Code Climate](https://codeclimate.com/github/hexlet/jest-supertest-matchers/badges/gpa.svg)](https://codeclimate.com/github/hexlet/jest-supertest-matchers) [![Issue Count](https://codeclimate.com/github/hexlet/jest-supertest-matchers/badges/issue_count
Downloads
135
Readme
jest-supertest-matchers
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);
});