Skip to content
This repository was archived by the owner on Apr 4, 2020. It is now read-only.

Commit fa76ea0

Browse files
committed
Fix unit tests
1 parent 0f8b9d1 commit fa76ea0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

test/unit/lib/JobTest.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
const expect = require('chai').expect
24
const sinon = require('sinon')
35
const proxyquire = require('proxyquire').noCallThru()
@@ -57,4 +59,4 @@ describe('Job', () => {
5759

5860
expect(job.cb()).to.deep.equal(mocks['lodash'].noop())
5961
})
60-
})
62+
})

test/unit/lib/PoolManagerTest.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"use strict";
2+
13
const expect = require('chai').expect
24
const sinon = require('sinon')
35
const proxyquire = require('proxyquire').noCallThru()
@@ -660,4 +662,4 @@ describe('PoolManager', () => {
660662
})
661663

662664

663-
})
665+
})

0 commit comments

Comments
 (0)