diff options
author | Alexander Early <alexander.early@gmail.com> | 2016-04-02 15:51:26 -0700 |
---|---|---|
committer | Alexander Early <alexander.early@gmail.com> | 2016-04-02 15:51:26 -0700 |
commit | 4994a09f2e4caf50617823f962dbc79c2eb07353 (patch) | |
tree | 71ee2eddea50383ef4637f32a7e0caf34e2e507d /mocha_test | |
parent | b9e778ee6d7cef6864adb09368783ea57aaecdce (diff) | |
download | async-4994a09f2e4caf50617823f962dbc79c2eb07353.tar.gz |
tweak timeouts in queue/cargo tests
Diffstat (limited to 'mocha_test')
-rw-r--r-- | mocha_test/cargo.js | 2 | ||||
-rw-r--r-- | mocha_test/queue.js | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mocha_test/cargo.js b/mocha_test/cargo.js index 36e3baa..235b9a2 100644 --- a/mocha_test/cargo.js +++ b/mocha_test/cargo.js @@ -93,7 +93,7 @@ describe('cargo', function () { c.push(3); c.push(4); c.push(5); - }, 45); + }, 50); setTimeout(function () { expect(call_order).to.eql([ diff --git a/mocha_test/queue.js b/mocha_test/queue.js index d6421e1..3e69728 100644 --- a/mocha_test/queue.js +++ b/mocha_test/queue.js @@ -371,7 +371,7 @@ describe('queue', function(){ 'process 6', 'timeout 240' ]); done(); - }, 250); + }, 300); }); it('pause in worker with concurrency', function(done) { @@ -451,7 +451,7 @@ describe('queue', function(){ 'process 6', 'timeout 200' ]); done(); - }, 250); + }, 300); }); it('start paused', function(done) { |