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

Commit a25a2cc

Browse files
author
Pedro Santos
committed
fix: increase dht findProvs test timeout
1 parent f3a8224 commit a25a2cc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/dht/find-provs.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ module.exports = (createCommon, options) => {
1919
const common = createCommon()
2020

2121
describe('.dht.findProvs', function () {
22+
this.timeout(80 * 1000)
23+
2224
let nodeA
2325
let nodeB
2426
let nodeC
2527

26-
before(async () => {
28+
before(async function () {
29+
this.timeout(60 * 1000)
2730
nodeA = await common.setup()
2831
nodeB = await common.setup()
2932
nodeC = await common.setup()

0 commit comments

Comments
 (0)