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

Commit

Permalink
fix: increase timeouts
Browse files Browse the repository at this point in the history
License: MIT
Signed-off-by: Alan Shaw <[email protected]>
  • Loading branch information
alanshaw committed May 16, 2018
1 parent 45fab1c commit 9cba111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/src/ping.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ module.exports = (common) => {
let ipfsdB

before(function (done) {
this.timeout(30 * 1000)
this.timeout(60 * 1000)

common.setup((err, factory) => {
if (err) return done(err)
Expand Down
2 changes: 1 addition & 1 deletion js/src/utils/connections.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function waitUntilConnected (fromNode, toNode, opts, cb) {
}

opts = opts || {}
opts.timeout = opts.timeout || 15000
opts.timeout = opts.timeout || 30000
opts.interval = opts.interval || 1000

const startTime = Date.now()
Expand Down

0 comments on commit 9cba111

Please sign in to comment.