@nsshunt/ststestrunner 1.1.87 → 1.1.88
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
|
@@ -959,7 +959,7 @@ var TestCaseFhirBase = class {
|
|
|
959
959
|
const message = `TestCaseFhir02:ExecuteQuery(): Retry auth attempt: retryCount: [${this.retryCount}], maxAuthRetryCount: [${this.maxAuthRetryCount}]`;
|
|
960
960
|
this.Error(message);
|
|
961
961
|
await (0, _nsshunt_stsutils.Sleep)(this.retryCount * 1e3);
|
|
962
|
-
return this._ExecuteQuery();
|
|
962
|
+
return await this._ExecuteQuery();
|
|
963
963
|
} else {
|
|
964
964
|
const message = `TestCaseFhir02:ExecuteQuery(): Max auth retries exceeded: retryCount: [${this.retryCount}], maxAuthRetryCount: [${this.maxAuthRetryCount}], Error: [${error}]`;
|
|
965
965
|
this.Error(message);
|