@nsshunt/ststestrunner 1.1.56 → 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,9 +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
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
451
451
|
this.Debug(chalk.default.magenta(`TestCaseFhirBase:StopRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
452
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
453
452
|
this.fhirClient.ResetSocket();
|
|
454
453
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
455
454
|
this.fhirClient = null;
|
|
@@ -460,9 +459,7 @@ var TestCaseFhirBase = class {
|
|
|
460
459
|
await this.#OutputLogMessage(`TerminateRunner [${this.#runner.id}]`);
|
|
461
460
|
await this.#ForcePublishTelemetryData();
|
|
462
461
|
if (this.fhirClient) {
|
|
463
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
464
462
|
this.Debug(chalk.default.magenta(`TestCaseFhirBase:TerminateRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
465
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
466
463
|
this.fhirClient.ResetSocket();
|
|
467
464
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
468
465
|
this.fhirClient = null;
|
|
@@ -475,9 +472,7 @@ var TestCaseFhirBase = class {
|
|
|
475
472
|
await this.#OutputLogMessage(`Completed [${this.#runner.id}] [${JSON.stringify(this.#runner.instrumentData)}]`);
|
|
476
473
|
await this.#ForcePublishTelemetryData();
|
|
477
474
|
if (this.fhirClient) {
|
|
478
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
479
475
|
this.Debug(chalk.default.magenta(`TestCaseFhirBase:Completed(): Calling: [fhirClient.ResetSocket()]`));
|
|
480
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
481
476
|
this.fhirClient.ResetSocket();
|
|
482
477
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
483
478
|
this.fhirClient = null;
|
|
@@ -498,9 +493,7 @@ var TestCaseFhirBase = class {
|
|
|
498
493
|
await this.#OutputLogMessage(`ResetRunner [${this.#runner.id}]`);
|
|
499
494
|
await this.#ForcePublishTelemetryData();
|
|
500
495
|
if (this.fhirClient) {
|
|
501
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
502
496
|
this.Debug(chalk.default.magenta(`TestCaseFhirBase:ResetRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
503
|
-
console.log(chalk.default.red(`************************************************************************************************`));
|
|
504
497
|
this.fhirClient.ResetSocket();
|
|
505
498
|
await (0, _nsshunt_stsutils.Sleep)(100);
|
|
506
499
|
this.fhirClient = null;
|