summaryrefslogtreecommitdiff
path: root/test/auto.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/auto.js')
-rw-r--r--test/auto.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/auto.js b/test/auto.js
index 3dc364d..938b040 100644
--- a/test/auto.js
+++ b/test/auto.js
@@ -1,4 +1,4 @@
-var async = require('../lib');
+var async = require('../lib/index.js');
var {expect} = require('chai');
var _ = require('lodash');
@@ -70,7 +70,7 @@ describe('auto', () => {
task5: ['task2', makeCallback('task5')],
task6: ['task2', makeCallback('task6')]
}, concurrency, (err, results) => {
- _.each(results, (result) => {
+ Object.values(results).forEach((result) => {
expect(result.length).to.be.below(concurrency + 1);
});
done();
@@ -457,7 +457,7 @@ describe('auto', () => {
next('Something bad happened here');
},
'filter' (next) {
- _.delay(() => {
+ setTimeout(() => {
next(null, 'All fine here though');
}, 25);
},
@@ -466,7 +466,7 @@ describe('auto', () => {
}]
}, (err) => {
expect(err).to.equal('Something bad happened here');
- _.delay(done, 30);
+ setTimeout(done, 30);
});
});
@@ -476,7 +476,7 @@ describe('auto', () => {
next('Something bad happened here');
},
'hasOwnProperty' (next) {
- _.delay(() => {
+ setTimeout(() => {
next(null, 'All fine here though');
}, 25);
},
@@ -485,7 +485,7 @@ describe('auto', () => {
}]
}, (err) => {
expect(err).to.equal('Something bad happened here');
- _.delay(done, 30);
+ setTimeout(done, 30);
});
});