Skip to content

Commit 4a1c947

Browse files
committed
remove timeout values
1 parent ba7662c commit 4a1c947

9 files changed

Lines changed: 9 additions & 9 deletions

File tree

routes/__tests__/create.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ it("'/create' route functions", async () => {
3737
expect(response.headers["etag"]).toBeTruthy()
3838
expect(response.headers["link"]).toBeTruthy()
3939

40-
}, 20000)
40+
})
4141

4242
it.skip("Support setting valid '_id' on '/create' request body.", async () => {
4343
// TODO

routes/__tests__/delete.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ it("'/delete' route functions", async () => {
3737
.then(resp => resp)
3838
.catch(err => err)
3939
expect(response.statusCode).toBe(204)
40-
}, 20000)
40+
})

routes/__tests__/history.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ it("'/history/:id' route functions", async () => {
2727
expect(response.headers["allow"]).toBeTruthy()
2828
expect(response.headers["link"]).toBeTruthy()
2929
expect(Array.isArray(response.body)).toBe(true)
30-
}, 20000)
30+
})

routes/__tests__/id.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ it("'/id/:id' route functions", async () => {
3030
expect(response.headers["last-modified"]).toBeTruthy()
3131
expect(response.headers["link"]).toBeTruthy()
3232
expect(response.headers["location"]).toBeTruthy()
33-
}, 20000)
33+
})
3434

3535
it.skip("Proper '@id-id' negotation on GET by URI.", async () => {
3636
// TODO

routes/__tests__/patch.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ it("'/patch' route functions", async () => {
3737
expect(response.headers["allow"]).toBeTruthy()
3838
expect(response.headers["link"]).toBeTruthy()
3939

40-
}, 20000)
40+
})

routes/__tests__/release.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ it("'/release' route functions", async () => {
4242
expect(response.body.__rerum.isReleased).toBeTruthy()
4343
expect(response.body.__rerum.slug).toBe(slug)
4444
controller.remove(slug)
45-
}, 20000)
45+
})

routes/__tests__/set.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ it("'/set' route functions", async () => {
3939
expect(response.headers["etag"]).toBeTruthy()
4040
expect(response.headers["allow"]).toBeTruthy()
4141
expect(response.headers["link"]).toBeTruthy()
42-
}, 20000)
42+
})

routes/__tests__/since.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ it("'/since/:id' route functions", async () => {
2626
expect(response.headers["allow"]).toBeTruthy()
2727
expect(response.headers["link"]).toBeTruthy()
2828
expect(Array.isArray(response.body)).toBe(true)
29-
}, 20000)
29+
})

routes/__tests__/update.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ it("'/update' route functions", async () => {
4040
expect(response.headers["allow"]).toBeTruthy()
4141
expect(response.headers["link"]).toBeTruthy()
4242

43-
}, 20000)
43+
})

0 commit comments

Comments
 (0)