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

Commit 9cba111

Browse files
committed
fix: increase timeouts
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 45fab1c commit 9cba111

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

js/src/ping.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = (common) => {
2828
let ipfsdB
2929

3030
before(function (done) {
31-
this.timeout(30 * 1000)
31+
this.timeout(60 * 1000)
3232

3333
common.setup((err, factory) => {
3434
if (err) return done(err)

js/src/utils/connections.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ function waitUntilConnected (fromNode, toNode, opts, cb) {
77
}
88

99
opts = opts || {}
10-
opts.timeout = opts.timeout || 15000
10+
opts.timeout = opts.timeout || 30000
1111
opts.interval = opts.interval || 1000
1212

1313
const startTime = Date.now()

0 commit comments

Comments
 (0)