test: fix worker tests
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 5 Oct 2023 18:38:42 +0000 (20:38 +0200)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Thu, 5 Oct 2023 18:38:42 +0000 (20:38 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
tests/worker/abstract-worker.test.mjs

index df844eef9a9cc72c5bac6c8749f95f8b42bb3d5c..575e065132b889ad4b96ba7f1440ab5db23b2759 100644 (file)
@@ -60,9 +60,6 @@ describe('Abstract worker test suite', () => {
     expect(() => new ThreadWorker(() => {}, { killHandler: 0 })).toThrowError(
       new TypeError('killHandler option is not a function')
     )
-    expect(() => new ThreadWorker(() => {}, { async: true })).toThrowError(
-      new TypeError('async option is deprecated')
-    )
   })
 
   it('Verify that worker options are set at worker creation', () => {