From b40ece78ac5195cd010960ace46833a48d84d3db Mon Sep 17 00:00:00 2001 From: Alexander Early Date: Thu, 7 Apr 2016 14:24:55 -0700 Subject: fix flaky test --- CHANGELOG.md | 2 +- mocha_test/detect.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8d23bb..9179d0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,7 +49,7 @@ Another theme is performance. We have eliminated internal deferrals in all cases - Added `someSeries` and `everySeries` for symmetry, as well as a complete set of `any`/`anyLimit`/`anySeries` and `all`/`/allLmit`/`allSeries` aliases. - Added `find` as an alias for `detect. (as well as `findLimit` and `findSeries`). -- Various doc fixes (#1005, #1008, #1010, #1015, #1021, #1037) +- Various doc fixes (#1005, #1008, #1010, #1015, #1021, #1037, #1102) ------------------------------------------ diff --git a/mocha_test/detect.js b/mocha_test/detect.js index ddc86ce..f308485 100644 --- a/mocha_test/detect.js +++ b/mocha_test/detect.js @@ -107,7 +107,7 @@ describe("detect", function () { setTimeout(function() { expect(call_order).to.eql([2, 'callback', 3]); done(); - }, 25); + }, 50); }); it('detectLimit - multiple matches', function(done){ @@ -120,7 +120,7 @@ describe("detect", function () { setTimeout(function(){ expect(call_order).to.eql([2, 'callback', 3]); done(); - }, 25); + }, 50); }); it('detectLimit - ensure stop', function (done) { -- cgit v1.2.1