1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00

fix server test

This commit is contained in:
Jernej Pregelj 2019-06-17 16:43:17 +02:00
parent d364a7beef
commit 667c46303c

View File

@ -8,7 +8,7 @@ afterAll(done => {
describe('GET /', () => {
it('responds with success', async () => {
const response = await request(server).get('/')
expect(response.statusCode).toBe(200)
expect(response.status).toBe(200)
})
})