We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abfc759 commit 5c4071fCopy full SHA for 5c4071f
tests/test.js
@@ -27,10 +27,13 @@ import db from '../src/db/db'
27
// });
28
29
// describe('general actions', () => {
30
- it('returns homepage', async () => {
+ it('returns homepage', () => {
31
+ // expect.assertions(1)
32
+ // const response = await request.get('/')
33
+ // expect(response.status).toBe(200)
34
+
35
expect.assertions(1)
- const response = await request.get('/')
- expect(response.status).toBe(200)
36
+ expect(1 + 1).toBe(2)
37
});
38
39
0 commit comments