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

chore: increase ping timeouts #400

Merged
merged 2 commits into from
Nov 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion js/src/ping/ping-pull-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ module.exports = (createCommon, options) => {
const common = createCommon()

describe('.pingPullStream', function () {
this.timeout(60 * 1000)
// TODO revisit when https://github.com/ipfs/go-ipfs/issues/5799 is resolved
this.timeout(2 * 60 * 1000)

let ipfsA
let ipfsB
Expand Down
3 changes: 2 additions & 1 deletion js/src/ping/ping-readable-stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ module.exports = (createCommon, options) => {
const common = createCommon()

describe('.pingReadableStream', function () {
this.timeout(60 * 1000)
// TODO revisit when https://github.com/ipfs/go-ipfs/issues/5799 is resolved
this.timeout(2 * 60 * 1000)

let ipfsA
let ipfsB
Expand Down
3 changes: 2 additions & 1 deletion js/src/ping/ping.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ module.exports = (createCommon, options) => {
const common = createCommon()

describe('.ping', function () {
this.timeout(60 * 1000)
// TODO revisit when https://github.com/ipfs/go-ipfs/issues/5799 is resolved
this.timeout(2 * 60 * 1000)

let ipfsA
let ipfsB
Expand Down