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 05a0611 commit e4c1273Copy full SHA for e4c1273
lib/command/run.js
@@ -8,7 +8,11 @@ module.exports = async function (test, options) {
8
// registering options globally to use in config
9
// Backward compatibility for --profile
10
process.profile = options.profile;
11
- process.env.profile = options.profile;
+
12
+ if (options.profile) {
13
+ process.env.profile = options.profile;
14
+ }
15
16
const configFile = options.config;
17
18
let config = getConfig(configFile);
0 commit comments