@testim/testim-cli 3.240.0 → 3.241.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testim/testim-cli",
3
- "version": "3.240.0",
3
+ "version": "3.241.0",
4
4
  "description": "Command line interface for running Testing on your CI",
5
5
  "author": "Oren Rubin",
6
6
  "contributors": [{
package/testRunStatus.js CHANGED
@@ -17,6 +17,7 @@ const { calculateCoverage } = require('./coverage/jsCoverage');
17
17
  const featureAvailabilityService = require('./commons/featureAvailabilityService');
18
18
  const featureFlags = require('./commons/featureFlags');
19
19
  const { mapFilesToLocalDrive } = require('./services/localRCASaver');
20
+ const { removeHiddenParamsInTestData } = require('./commons/testimServicesApi');
20
21
 
21
22
  const gitBranch = utils.getEnvironmentGitBranch();
22
23
  const gitCommit = process.env.GIT_COMMIT || process.env.CIRCLE_SHA1 || process.env.TRAVIS_COMMIT;
@@ -124,6 +125,13 @@ RunStatus.prototype.addRetryTestResult = async function ({
124
125
 
125
126
  this.testRunStatus[newResultId] = newTestResult;
126
127
 
128
+ const { projectData } = this.options;
129
+
130
+
131
+ if (newTestResult.config.testData) {
132
+ newTestResult.config.testData = removeHiddenParamsInTestData(newTestResult.config.testData, projectData.defaults);
133
+ }
134
+
127
135
  return servicesApi.addTestRetry({
128
136
  projectId,
129
137
  runId: executionId,