Skip to content

Commit 14d4d0f

Browse files
authored
Improving tests case coverage (#1754)
* Adding test case when invalid callback is provided to each () * adding nyc ignore block * Adding new test cases for drain to be called if empty data is pushed
1 parent 200cc00 commit 14d4d0f

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

lib/internal/consoleFunc.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@ import wrapAsync from './wrapAsync';
22

33
export default function consoleFunc(name) {
44
return (fn, ...args) => wrapAsync(fn)(...args, (err, ...resultArgs) => {
5+
/* istanbul ignore else */
56
if (typeof console === 'object') {
7+
/* istanbul ignore else */
68
if (err) {
9+
/* istanbul ignore else */
710
if (console.error) {
811
console.error(err);
912
}
10-
} else if (console[name]) {
13+
} else if (console[name]) { /* istanbul ignore else */
1114
resultArgs.forEach(x => console[name](x));
1215
}
1316
}

test/each.js

+9
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,15 @@ describe("each", () => {
9696
async.each([1], eachNoCallbackIteratee.bind(this, done));
9797
});
9898

99+
it('each no callback', async (done) => {
100+
try {
101+
async.each([1], 'INVALID_CALL_BACK', () => {});
102+
} catch(err) {
103+
expect(err.message).to.equal('expected a function')
104+
done()
105+
}
106+
});
107+
99108
it('eachSeries', function(done) {
100109
var args = [];
101110
async.eachSeries([1,3,2], eachIteratee.bind(this, args), (err) => {

test/priorityQueue.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,15 @@ describe('priorityQueue', () => {
4949
]);
5050
expect(q.concurrency).to.equal(1);
5151
expect(q.length()).to.equal(0);
52-
done();
52+
q.push([])
53+
expect(q.length()).to.equal(0)
54+
done()
5355
});
56+
try {
57+
q.push(5, 5, 'NOT_A_FUNCTION')
58+
} catch(e) {
59+
expect(e.message).to.equal('task callback must be a function')
60+
}
5461
});
5562

5663
it('concurrency', (done) => {
@@ -276,4 +283,3 @@ describe('priorityQueue', () => {
276283
q.push([], 1, () => {});
277284
});
278285
});
279-

0 commit comments

Comments
 (0)