codeceptjs 4.0.1-beta.29 → 4.0.1-beta.30
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.
|
@@ -104,7 +104,9 @@ initPromise = (async function () {
|
|
|
104
104
|
// important deep merge so dynamic things e.g. functions on config are not overridden
|
|
105
105
|
config = deepMerge(baseConfig, overrideConfigs)
|
|
106
106
|
|
|
107
|
-
|
|
107
|
+
// Pass workerIndex as child option for output.process() to display worker prefix
|
|
108
|
+
const optsWithChild = { ...options, child: workerIndex }
|
|
109
|
+
codecept = new Codecept(config, optsWithChild)
|
|
108
110
|
await codecept.init(testRoot)
|
|
109
111
|
codecept.loadTests()
|
|
110
112
|
mocha = container.mocha()
|