@nsshunt/ststestrunner 1.1.98 → 1.1.99
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
CHANGED
|
@@ -779,7 +779,10 @@ var TestCaseFhirBase = class {
|
|
|
779
779
|
let timeout = void 0;
|
|
780
780
|
let start = performance.now();
|
|
781
781
|
try {
|
|
782
|
-
if (this.#accesssToken)
|
|
782
|
+
if (this.#accesssToken) {
|
|
783
|
+
this.Debug(`TestCaseFhirBase:GetAccessToken(): ${this.#accesssToken}`);
|
|
784
|
+
return this.#accesssToken;
|
|
785
|
+
}
|
|
783
786
|
this.Debug(`TestCaseFhirBase:GetAccessToken(): Getting new access token`);
|
|
784
787
|
timeout = setTimeout(() => {
|
|
785
788
|
this.Warning(chalk.default.magenta(`TestCaseFhirBase:GetAccessToken(): Timeout: [${this._authMaxTimeout}] exceeded for getting access token ...`));
|