X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Ffixed.test.js;h=01622f1622c87237e1dc501313ff14ef348cc2dd;hb=7fd82a1cb4d9d43e0f44333db35d3c4ad694e010;hp=5bbc8e0e1bc918bf222907e4c76dad553424f9bc;hpb=e1ffb94fcac39a7459c47edaa086a7729a1dec44;p=poolifier.git diff --git a/tests/pools/thread/fixed.test.js b/tests/pools/thread/fixed.test.js index 5bbc8e0e..01622f16 100644 --- a/tests/pools/thread/fixed.test.js +++ b/tests/pools/thread/fixed.test.js @@ -1,6 +1,6 @@ const { expect } = require('expect') const { FixedThreadPool } = require('../../../lib/index') -const WorkerFunctions = require('../../test-types') +const { WorkerFunctions } = require('../../test-types') const TestUtils = require('../../test-utils') describe('Fixed thread pool test suite', () => { @@ -128,9 +128,9 @@ describe('Fixed thread pool test suite', () => { it('Verify that async function is working properly', async () => { const data = { f: 10 } - const startTime = new Date().getTime() + const startTime = Date.now() const result = await asyncPool.execute(data) - const usedTime = new Date().getTime() - startTime + const usedTime = Date.now() - startTime expect(result).toStrictEqual(data) expect(usedTime).toBeGreaterThanOrEqual(2000) })