@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.
@@ -607,7 +607,9 @@ var TestCaseFhirBase = class {
607
607
  return true;
608
608
  };
609
609
  _GetDetail = () => {
610
- return `testType: [${this.runner.options.testType}], description: [${this.runner.options.description}], workerManagerId: [${this.runner.workerManagerId}], Iteration: [${this.runner.iteration}]`;
610
+ const { runPrefix, testType, description } = this.runner.options;
611
+ const { workerManagerId, iteration } = this.runner;
612
+ return `runPrefix: [${runPrefix}], testType: [${testType}], description: [${description}], workerManagerId: [${workerManagerId}], Iteration: [${iteration}]`;
611
613
  };
612
614
  _CheckOutputLongDurationError = (snapshotStart, message) => {
613
615
  const snapShotEnd = performance.now();
@@ -36342,7 +36344,7 @@ var AuthHelper = class extends import_tiny_emitter.TinyEmitter {
36342
36344
  if (totalTime > this._authMaxTimeout) this.Warning(chalk.default.magenta(`GetAccessToken(): The total time for getting the access token: [${totalTime}]`));
36343
36345
  this.#accesssToken = workingAaccesssToken;
36344
36346
  this._lockHelper.ReleaseOnHold(lockKey);
36345
- this.Debug(chalk.default.yellow(`GetAccessToken(): release hold (lock) Time taken for get access token: [${performance.now() - start}ms]`));
36347
+ this.Debug(chalk.default.yellow(`GetAccessToken(): release hold (lock) Time taken for get access token: [${performance.now() - start}ms], lock key: [${lockKey}]`));
36346
36348
  return this.#accesssToken;
36347
36349
  } catch (error) {
36348
36350
  if (timeout) clearTimeout(timeout);