Skip to content

Commit 5c4071f

Browse files
testing
1 parent abfc759 commit 5c4071f

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,13 @@ import db from '../src/db/db'
2727
// });
2828

2929
// describe('general actions', () => {
30-
it('returns homepage', async () => {
30+
it('returns homepage', () => {
31+
// expect.assertions(1)
32+
// const response = await request.get('/')
33+
// expect(response.status).toBe(200)
34+
3135
expect.assertions(1)
32-
const response = await request.get('/')
33-
expect(response.status).toBe(200)
36+
expect(1 + 1).toBe(2)
3437
});
3538
// });
3639

0 commit comments

Comments
 (0)