Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit fa3b90f

Browse files
committed
chore: increase timeout for CI
1 parent d7bf90f commit fa3b90f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/pubsub.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ module.exports = (common) => {
6363

6464
const getTopic = () => 'pubsub-tests-' + Math.random()
6565

66-
describe('callback API', () => {
66+
describe('callback API', function () {
67+
this.timeout(80 * 1000)
68+
6769
let ipfs1
6870
let ipfs2
6971
let ipfs3
@@ -599,7 +601,9 @@ module.exports = (common) => {
599601
})
600602
})
601603

602-
describe('promise API', () => {
604+
describe('promise API', function () {
605+
this.timeout(80 * 1000)
606+
603607
let ipfs1
604608

605609
before((done) => {

0 commit comments

Comments
 (0)