From 594b770d8e1a340bd76fa7869db93781739fe848 Mon Sep 17 00:00:00 2001 From: Friedel Ziegelmayer Date: Sun, 8 May 2016 22:19:43 +0200 Subject: [PATCH] try to appease the travis gods --- test/04-muxing-multiplex.node.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/04-muxing-multiplex.node.js b/test/04-muxing-multiplex.node.js index e1d772f..860a0f9 100644 --- a/test/04-muxing-multiplex.node.js +++ b/test/04-muxing-multiplex.node.js @@ -11,7 +11,7 @@ const TCP = require('libp2p-tcp') const multiplex = require('libp2p-spdy') describe('stream muxing with multiplex (on TCP)', function () { - this.timeout(20000) + this.timeout(60 * 1000) var swarmA var peerA @@ -41,7 +41,7 @@ describe('stream muxing with multiplex (on TCP)', function () { swarmB.transport.add('tcp', new TCP()) swarmC.transport.add('tcp', new TCP()) - async.series([ + async.parallel([ (cb) => swarmA.transport.listen('tcp', {}, null, cb), (cb) => swarmB.transport.listen('tcp', {}, null, cb), (cb) => swarmC.transport.listen('tcp', {}, null, cb)