We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d94798 commit 9e635b9Copy full SHA for 9e635b9
lib/command/workers/runTests.js
@@ -104,7 +104,9 @@ initPromise = (async function () {
104
// important deep merge so dynamic things e.g. functions on config are not overridden
105
config = deepMerge(baseConfig, overrideConfigs)
106
107
- codecept = new Codecept(config, options)
+ // Pass workerIndex as child option for output.process() to display worker prefix
108
+ const optsWithChild = { ...options, child: workerIndex }
109
+ codecept = new Codecept(config, optsWithChild)
110
await codecept.init(testRoot)
111
codecept.loadTests()
112
mocha = container.mocha()
0 commit comments