@nsshunt/ststestrunner 1.1.106 → 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();
@@ -36318,7 +36320,7 @@ var AuthHelper = class extends import_tiny_emitter.TinyEmitter {
36318
36320
  if (totalTime > this._authMaxTimeout) this.Warning(chalk.magenta(`GetAccessToken(): The total time for getting the access token: [${totalTime}]`));
36319
36321
  this.#accesssToken = workingAaccesssToken;
36320
36322
  this._lockHelper.ReleaseOnHold(lockKey);
36321
- this.Debug(chalk.yellow(`GetAccessToken(): release hold (lock) Time taken for get access token: [${performance.now() - start}ms]`));
36323
+ this.Debug(chalk.yellow(`GetAccessToken(): release hold (lock) Time taken for get access token: [${performance.now() - start}ms], lock key: [${lockKey}]`));
36322
36324
  return this.#accesssToken;
36323
36325
  } catch (error) {
36324
36326
  if (timeout) clearTimeout(timeout);