@nsshunt/ststestrunner 1.1.107 → 1.1.108

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.
@@ -583,7 +583,9 @@ var TestCaseFhirBase = class {
583
583
  return true;
584
584
  };
585
585
  _GetDetail = () => {
586
- return `testType: [${this.runner.options.testType}], description: [${this.runner.options.description}], workerManagerId: [${this.runner.workerManagerId}], Iteration: [${this.runner.iteration}]`;
586
+ const { runPrefix, testType, description } = this.runner.options;
587
+ const { workerManagerId, iteration } = this.runner;
588
+ return `runPrefix: [${runPrefix}], testType: [${testType}], description: [${description}], workerManagerId: [${workerManagerId}], Iteration: [${iteration}]`;
587
589
  };
588
590
  _CheckOutputLongDurationError = (snapshotStart, message) => {
589
591
  const snapShotEnd = performance.now();