jest-supertest-matchers
v0.0.2
Published
[](https://codeclimate.com/github/hexlet/jest-supertest-matchers) [ => {
expect.extend(matchers);
});
it('example', async () => {
const res = await request(app).get('/');
expect(res).toHaveHTTPStatus(200);
});