We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ee506c + 561c972 commit 7519550Copy full SHA for 7519550
bin/helpers/usageReporting.js
@@ -174,6 +174,9 @@ 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
+ };
180
181
delete args.bstack_config;
182
@@ -190,6 +193,7 @@ function send(args) {
190
193
local_cypress_version: local_cypress_version(bsConfig),
191
194
ci_environment: ci_environment(),
192
195
event_timestamp: new Date().toLocaleString(),
196
+ data: JSON.stringify(data),
197
...args,
198
},
199
};
0 commit comments