test: refine some test expectations
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 28 Oct 2024 11:52:19 +0000 (12:52 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Mon, 28 Oct 2024 11:52:19 +0000 (12:52 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
tests/pools/worker-node.test.mjs

index 8698680f370dcddd803b9c157c7cae5f9a02f041..42eb4434cbbdb9f1bb928eb818ae5d369b021c6d 100644 (file)
@@ -212,7 +212,7 @@ describe('Worker node test suite', () => {
           }
         )
     ).toThrow(
-      new RangeError(
+      new TypeError(
         'Cannot construct a worker node without a tasks queue priority option'
       )
     )
@@ -228,7 +228,7 @@ describe('Worker node test suite', () => {
           }
         )
     ).toThrow(
-      new RangeError(
+      new TypeError(
         'Cannot construct a worker node with a tasks queue priority option that is not a boolean'
       )
     )
@@ -361,7 +361,7 @@ describe('Worker node test suite', () => {
     expect(() =>
       threadWorkerNode.getTaskFunctionWorkerUsage('invalidTaskFunction')
     ).toThrow(
-      new TypeError(
+      new Error(
         "Cannot get task function worker usage for task function name 'invalidTaskFunction' when task function properties list is not yet defined"
       )
     )
@@ -372,7 +372,7 @@ describe('Worker node test suite', () => {
     expect(() =>
       threadWorkerNode.getTaskFunctionWorkerUsage('invalidTaskFunction')
     ).toThrow(
-      new TypeError(
+      new Error(
         "Cannot get task function worker usage for task function name 'invalidTaskFunction' when task function properties list has less than 3 elements"
       )
     )