@nsshunt/ststestrunner 1.1.55 → 1.1.57
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
|
@@ -168,6 +168,7 @@ var TestCaseFhirBase = class {
|
|
|
168
168
|
agentManager: this.GetFhirAgentManager(),
|
|
169
169
|
joinRooms: [],
|
|
170
170
|
logger: this.#runnerExecutionWorker.logger,
|
|
171
|
+
verboseLogging: true,
|
|
171
172
|
GetConnectionAccessToken: this.GetAccessTokenForSocketClientAccess,
|
|
172
173
|
GetAccessToken: this.GetAccessToken
|
|
173
174
|
};
|
|
@@ -447,7 +448,7 @@ var TestCaseFhirBase = class {
|
|
|
447
448
|
await this.#OutputLogMessage(`StopRunner [${this.#runner.id}]`);
|
|
448
449
|
await this.#ForcePublishTelemetryData();
|
|
449
450
|
if (this.fhirClient) {
|
|
450
|
-
this.Debug(`TestCaseFhirBase:StopRunner(): Calling: [fhirClient.ResetSocket()]`);
|
|
451
|
+
this.Debug(chalk.default.magenta(`TestCaseFhirBase:StopRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
451
452
|
this.fhirClient.ResetSocket();
|
|
452
453
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
453
454
|
this.fhirClient = null;
|
|
@@ -458,7 +459,7 @@ var TestCaseFhirBase = class {
|
|
|
458
459
|
await this.#OutputLogMessage(`TerminateRunner [${this.#runner.id}]`);
|
|
459
460
|
await this.#ForcePublishTelemetryData();
|
|
460
461
|
if (this.fhirClient) {
|
|
461
|
-
this.Debug(`TestCaseFhirBase:TerminateRunner(): Calling: [fhirClient.ResetSocket()]`);
|
|
462
|
+
this.Debug(chalk.default.magenta(`TestCaseFhirBase:TerminateRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
462
463
|
this.fhirClient.ResetSocket();
|
|
463
464
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
464
465
|
this.fhirClient = null;
|
|
@@ -471,7 +472,7 @@ var TestCaseFhirBase = class {
|
|
|
471
472
|
await this.#OutputLogMessage(`Completed [${this.#runner.id}] [${JSON.stringify(this.#runner.instrumentData)}]`);
|
|
472
473
|
await this.#ForcePublishTelemetryData();
|
|
473
474
|
if (this.fhirClient) {
|
|
474
|
-
this.Debug(`TestCaseFhirBase:Completed(): Calling: [fhirClient.ResetSocket()]`);
|
|
475
|
+
this.Debug(chalk.default.magenta(`TestCaseFhirBase:Completed(): Calling: [fhirClient.ResetSocket()]`));
|
|
475
476
|
this.fhirClient.ResetSocket();
|
|
476
477
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
477
478
|
this.fhirClient = null;
|
|
@@ -492,7 +493,7 @@ var TestCaseFhirBase = class {
|
|
|
492
493
|
await this.#OutputLogMessage(`ResetRunner [${this.#runner.id}]`);
|
|
493
494
|
await this.#ForcePublishTelemetryData();
|
|
494
495
|
if (this.fhirClient) {
|
|
495
|
-
this.Debug(`TestCaseFhirBase:ResetRunner(): Calling: [fhirClient.ResetSocket()]`);
|
|
496
|
+
this.Debug(chalk.default.magenta(`TestCaseFhirBase:ResetRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
496
497
|
this.fhirClient.ResetSocket();
|
|
497
498
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
498
499
|
this.fhirClient = null;
|