codeceptjs 4.0.1-beta.31 → 4.0.1-beta.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/workers.js +3 -0
- package/package.json +1 -1
package/lib/workers.js
CHANGED
|
@@ -530,6 +530,9 @@ class Workers extends EventEmitter {
|
|
|
530
530
|
}
|
|
531
531
|
|
|
532
532
|
worker.on('message', message => {
|
|
533
|
+
if (message.workerIndex !== undefined) {
|
|
534
|
+
console.log(`[DEBUG] Received message from worker with workerIndex: ${message.workerIndex}`)
|
|
535
|
+
}
|
|
533
536
|
output.process(message.workerIndex)
|
|
534
537
|
|
|
535
538
|
// Handle test requests for pool mode
|