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

Commit 0e3d544

Browse files
committed
test: fix ping, kept timing out in CI
1 parent 27134ed commit 0e3d544

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

js/src/ping/ping-pull-stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = (createCommon, options) => {
1414
const common = createCommon()
1515

1616
describe('.pingPullStream', function () {
17-
this.timeout(15 * 1000)
17+
this.timeout(60 * 1000)
1818

1919
let ipfsA
2020
let ipfsB

js/src/ping/ping-readable-stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = (createCommon, options) => {
1515
const common = createCommon()
1616

1717
describe('.pingReadableStream', function () {
18-
this.timeout(15 * 1000)
18+
this.timeout(60 * 1000)
1919

2020
let ipfsA
2121
let ipfsB

js/src/ping/ping.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = (createCommon, options) => {
1313
const common = createCommon()
1414

1515
describe('.ping', function () {
16-
this.timeout(15 * 1000)
16+
this.timeout(60 * 1000)
1717

1818
let ipfsA
1919
let ipfsB

0 commit comments

Comments
 (0)