test: fix async/await imbalance
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 3 Oct 2023 19:22:17 +0000 (21:22 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Tue, 3 Oct 2023 19:22:17 +0000 (21:22 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
tests/pools/cluster/fixed.test.mjs
tests/pools/thread/fixed.test.mjs
tests/worker/abstract-worker.test.mjs

index 7d829f32858e548e30d0325266adc0bdf637b13e..4471f51309c39cdb056203aa97d0c03205bb9043 100644 (file)
@@ -318,7 +318,7 @@ describe('Fixed cluster pool test suite', () => {
     await pool.destroy()
   })
 
-  it('Verify that a pool with zero worker fails', async () => {
+  it('Verify that a pool with zero worker fails', () => {
     expect(
       () =>
         new FixedClusterPool(0, './tests/worker-files/cluster/testWorker.js')
index 3969c83ad7464c728d7df33dd092673c16384734..fd7f5935697d9e2074d1f9734b6b2345159e9775 100644 (file)
@@ -338,7 +338,7 @@ describe('Fixed thread pool test suite', () => {
     await pool.destroy()
   })
 
-  it('Verify that a pool with zero worker fails', async () => {
+  it('Verify that a pool with zero worker fails', () => {
     expect(
       () => new FixedThreadPool(0, './tests/worker-files/thread/testWorker.mjs')
     ).toThrowError('Cannot instantiate a fixed pool with zero worker')
index e15f60a5445c16698874815862bc92ff991a471b..df844eef9a9cc72c5bac6c8749f95f8b42bb3d5c 100644 (file)
@@ -179,7 +179,7 @@ describe('Abstract worker test suite', () => {
   it('Verify that async kill handler is called when worker is killed', () => {
     const killHandlerStub = stub().returns()
     const worker = new ClusterWorker(() => {}, {
-      killHandler: async () => Promise.resolve(killHandlerStub())
+      killHandler: async () => await Promise.resolve(killHandlerStub())
     })
     worker.isMain = false
     worker.handleKillMessage()