Skip to content

Commit 79abaa3

Browse files
committed
Increase timeout
1 parent 28ebf51 commit 79abaa3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var PromiseWorker = require('../');
1212

1313
describe('host -> worker', function () {
1414

15-
this.timeout(60000);
15+
this.timeout(120000);
1616

1717
it('sends a message back and forth', function () {
1818
var worker = new Worker(path + 'worker-pong.js');
@@ -200,7 +200,7 @@ describe('host -> worker', function () {
200200

201201
describe('worker -> host', function () {
202202

203-
this.timeout(60000);
203+
this.timeout(120000);
204204

205205
it('sends a message from worker to host', function (done) {
206206
var worker = new Worker(path + 'worker-host-ping.js');
@@ -434,7 +434,7 @@ describe('worker -> host', function () {
434434

435435
describe('bidirectional communication', function () {
436436

437-
this.timeout(60000);
437+
this.timeout(120000);
438438

439439
it('echoes a message', function (done) {
440440
var worker = new Worker(path + 'worker-bidirectional-echo.js');

0 commit comments

Comments
 (0)