@testim/testim-cli 3.239.0 → 3.240.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.239.0",
3
+ "version": "3.240.0",
4
4
  "description": "Command line interface for running Testing on your CI",
5
5
  "author": "Oren Rubin",
6
6
  "contributors": [{
package/testRunHandler.js CHANGED
@@ -248,7 +248,7 @@ class TestRun {
248
248
  if (this._options.mockNetworkRules) {
249
249
  runData.mockNetworkRules = this._options.mockNetworkRules;
250
250
  }
251
- const mustClearPreviousStepResults = !this.isAllowReportTestResultRetries() && (this._timeoutRetryCount > 1 || this._retryCount > 1);
251
+ const mustClearPreviousStepResults = (this._timeoutRetryCount > 1 || this._retryCount > 1);
252
252
 
253
253
  if (this._options.lightweightMode && this._options.lightweightMode.disableResults &&
254
254
  !mustClearPreviousStepResults && canSendRunDataOverUrl(runData)) {