fix: fix formatting issue.
[poolifier.git] / tests / pools / thread / dynamic.test.js
index e30099dd4f890097e5ee705662273ee1e04ce97e..0eab0381143f1267cdc506e9d6e9bf77d93da0f3 100644 (file)
@@ -11,7 +11,7 @@ describe('Dynamic thread pool test suite', () => {
     max,
     './tests/worker-files/thread/testWorker.js',
     {
-      errorHandler: (e) => console.error(e)
+      errorHandler: e => console.error(e)
     }
   )
 
@@ -91,7 +91,7 @@ describe('Dynamic thread pool test suite', () => {
       max,
       './tests/worker-files/thread/longRunningWorkerHardBehavior.js',
       {
-        errorHandler: (e) => console.error(e),
+        errorHandler: e => console.error(e),
         onlineHandler: () => console.info('long executing worker is online'),
         exitHandler: () => console.info('long executing worker exited')
       }
@@ -118,7 +118,7 @@ describe('Dynamic thread pool test suite', () => {
       max,
       './tests/worker-files/thread/longRunningWorkerSoftBehavior.js',
       {
-        errorHandler: (e) => console.error(e),
+        errorHandler: e => console.error(e),
         onlineHandler: () => console.info('long executing worker is online'),
         exitHandler: () => console.info('long executing worker exited')
       }