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 b42190f commit eb619d2Copy full SHA for eb619d2
lib/command/run-multiple.js
@@ -28,7 +28,9 @@ let processesDone;
28
29
module.exports = async function (selectedRuns, options) {
30
// registering options globally to use in config
31
- process.env.profile = options.profile;
+ if (options.profile) {
32
+ process.env.profile = options.profile;
33
+ }
34
const configFile = options.config;
35
36
const testRoot = getTestRoot(configFile);
0 commit comments