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 4768967 commit 4358effCopy full SHA for 4358eff
bin/helpers/usageReporting.js
@@ -174,9 +174,11 @@ function send(args) {
174
175
let bsConfig = args.bstack_config;
176
let cli_details = cli_version_and_path(bsConfig);
177
- let data = {
178
- cypress_version: bsConfig.run_settings.cypress_version
179
- };
+ let data = {}
+
+ if (bsConfig && bsConfig.run_settings) {
180
+ data.cypress_version = bsConfig.run_settings.cypress_version
181
+ }
182
183
delete args.bstack_config;
184
0 commit comments