@nsshunt/ststestrunner 1.0.2 → 1.0.3
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.mjs
CHANGED
|
@@ -9140,7 +9140,8 @@ class TestCaseFhir01 extends TestCaseFhirBase {
|
|
|
9140
9140
|
if (this.runner.instrumentData.requestCount % options.agentResetMod === 0) {
|
|
9141
9141
|
this.runner.instrumentData.message.push(chalk$1.green(`Iteration: [${this.runner.iteration} #authUtilsNode(): Agent Reset`));
|
|
9142
9142
|
}
|
|
9143
|
-
await this.GetAccessToken();
|
|
9143
|
+
const retVal = await this.GetAccessToken();
|
|
9144
|
+
this.Debug(`ExecuteRunner(): RetVal: [${retVal}]`);
|
|
9144
9145
|
this.accesssToken = null;
|
|
9145
9146
|
this.runner.instrumentData.coreCount = 1;
|
|
9146
9147
|
this.runner.instrumentData.requestCount++;
|