refactor: use object destructuration at handling task execution response
[poolifier.git] / tests / worker-files / thread / errorWorker.js
index e9f20ab8e5101120d7f51459bf338676208f404f..19785dc36152b694d16e62468504590f9e921cb2 100644 (file)
@@ -1,8 +1,8 @@
 'use strict'
-const { ThreadWorker, KillBehaviors } = require('../../../lib/index')
+const { ThreadWorker, KillBehaviors } = require('../../../lib')
 
-function error (data) {
-  throw new Error(data)
+function error () {
+  throw new Error('Error Message from ThreadWorker')
 }
 
 module.exports = new ThreadWorker(error, {