summaryrefslogtreecommitdiff
path: root/test/eachOf.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/eachOf.js')
-rw-r--r--test/eachOf.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/eachOf.js b/test/eachOf.js
index 7d80990..1701d3e 100644
--- a/test/eachOf.js
+++ b/test/eachOf.js
@@ -299,15 +299,15 @@ describe("eachOf", function() {
});
});
- it('forEachOfLimit zero limit', function(done) {
- async.forEachOfLimit({ a: 1, b: 2 }, 0, function(x, callback){
- assert(false, 'iteratee should not be called');
- callback();
- }, function(err){
- if (err) throw err;
- assert(true, 'should call callback');
- });
- setTimeout(done, 25);
+ it('forEachOfLimit zero limit', function() {
+ expect(() => {
+ async.forEachOfLimit({ a: 1, b: 2 }, 0, function(x, callback){
+ assert(false, 'iteratee should not be called');
+ callback();
+ }, function(){
+ assert(true, 'should call callback');
+ });
+ }).to.throw(/concurrency limit/)
});
it('forEachOfLimit no limit', function(done) {