test: increase timeouts (#48)

This commit is contained in:
Dmitriy Ryajov 2017-12-13 23:47:36 -06:00 committed by David Dias
parent 8d93b6e586
commit 6180213681
2 changed files with 3 additions and 2 deletions

View File

@ -53,4 +53,4 @@
"Victor Bjelkholm <victorbjelkholm@gmail.com>",
"greenkeeperio-bot <support@greenkeeper.io>"
]
}
}

View File

@ -59,7 +59,8 @@ module.exports = (common) => {
spawn(muxer, 1000, 10, done)
})
it('1000 streams with 100 msg', (done) => {
it('1000 streams with 100 msg', function (done) {
this.timeout(10 * 1000)
spawn(muxer, 1000, 100, done)
})
})