@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/commons/testimCloudflare.js +9 -2
- package/commons/testimCloudflare.test.js +26 -3
- package/commons/testimServicesApi.js +16 -14
- package/commons/testimTunnel.js +3 -2
- package/commons/testimTunnel.test.js +6 -6
- package/npm-shrinkwrap.json +288 -288
- package/package.json +1 -1
- package/testRunStatus.js +8 -0
package/package.json
CHANGED
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,
|