@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.
- package/dist/ststestrunner.cjs +4 -2
- package/dist/ststestrunner.cjs.map +1 -1
- package/dist/ststestrunner.mjs +4 -2
- package/dist/ststestrunner.mjs.map +1 -1
- package/package.json +1 -1
- package/types/commonTypes.d.ts +1 -0
- package/types/commonTypes.d.ts.map +1 -1
- package/types/libmodule/testCaseFhirBase.d.ts.map +1 -1
package/dist/ststestrunner.mjs
CHANGED
|
@@ -583,7 +583,9 @@ var TestCaseFhirBase = class {
|
|
|
583
583
|
return true;
|
|
584
584
|
};
|
|
585
585
|
_GetDetail = () => {
|
|
586
|
-
|
|
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);
|