Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 5d55b3c

Browse files
committed
Increase test timeout.
1 parent 6728786 commit 5d55b3c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

test/cli-tests/test-bitswap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const createTempNode = require('../utils/temp-node')
1212
const repoPath = require('./index').repoPath
1313

1414
describe('bitswap', function () {
15-
this.timeout(20000)
15+
this.timeout(80000)
1616
const env = _.clone(process.env)
1717
env.IPFS_PATH = repoPath
1818

test/cli-tests/test-swarm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const repoPath = require('./index').repoPath
99
const _ = require('lodash')
1010

1111
describe('swarm', function () {
12-
this.timeout(20000)
12+
this.timeout(80000)
1313
const env = _.clone(process.env)
1414
env.IPFS_PATH = repoPath
1515

test/core-tests/test-swarm-node.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const expect = require('chai').expect
66
const createTempNode = require('../utils/temp-node')
77

88
describe('swarm', function () {
9-
this.timeout(20000)
9+
this.timeout(80000)
1010

1111
var ipfsA
1212
var ipfsB

test/http-api-tests/test-bitswap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const expect = require('chai').expect
55

66
module.exports = (httpAPI) => {
77
describe('bitswap', function () {
8-
this.timeout(20000)
8+
this.timeout(80000)
99
describe('commands', () => {
1010
let api
1111
before(() => {

test/http-api-tests/test-swarm.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const createTempNode = require('../utils/temp-node')
77

88
module.exports = (httpAPI) => {
99
describe('swarm', function () {
10-
this.timeout(20000)
10+
this.timeout(80000)
1111

1212
describe('api', () => {
1313
var api

0 commit comments

Comments
 (0)