artes 1.0.69 → 1.0.71
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/cucumber.config.js
CHANGED
|
@@ -47,7 +47,7 @@ module.exports = {
|
|
|
47
47
|
}, // Formatter options
|
|
48
48
|
|
|
49
49
|
// Execution options
|
|
50
|
-
parallel: process.env.
|
|
50
|
+
parallel: process.env.PARALLEL ? JSON.parse(process.env.PARALLEL) : artesConfig.parallel || 1, // Number of parallel workers
|
|
51
51
|
dryRun: process.env.DRYRUN ? JSON.parse(process.env.DRYRUN) : artesConfig.dryRun || false, // Prepare test run without execution
|
|
52
52
|
failFast: artesConfig.failFast || false, // Stop on first test failure
|
|
53
53
|
forceExit: artesConfig.forceExit || false, // Force process.exit() after tests
|
package/package.json
CHANGED