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.
2 parents 3aec970 + 6fcfedf commit 3fe7dd1Copy full SHA for 3fe7dd1
bin/helpers/config.js
@@ -1,6 +1,6 @@
1
var config = require('./config.json');
2
3
-config.env = process.env.NODE_ENV || "production";
+config.env = process.env.BSTACK_CYPRESS_NODE_ENV || "production";
4
5
if(config.env !== "production") {
6
// load config based on env
bin/helpers/utils.js
@@ -219,7 +219,7 @@ exports.isParallelValid = (value) => {
219
}
220
221
exports.getUserAgent = () => {
222
- return `BStack-Cypress-CLI/1.5.0 (${os.arch()}/${os.platform()}/${os.release()})`;
+ return `BStack-Cypress-CLI/1.5.1 (${os.arch()}/${os.platform()}/${os.release()})`;
223
};
224
225
exports.isAbsolute = (configPath) => {
0 commit comments