@nsshunt/ststestrunner 1.1.55 → 1.1.56
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
|
@@ -424,7 +424,9 @@ var TestCaseFhirBase = class {
|
|
|
424
424
|
await this.#OutputLogMessage(`StopRunner [${this.#runner.id}]`);
|
|
425
425
|
await this.#ForcePublishTelemetryData();
|
|
426
426
|
if (this.fhirClient) {
|
|
427
|
-
|
|
427
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
428
|
+
this.Debug(chalk.magenta(`TestCaseFhirBase:StopRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
429
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
428
430
|
this.fhirClient.ResetSocket();
|
|
429
431
|
await Sleep(100);
|
|
430
432
|
this.fhirClient = null;
|
|
@@ -435,7 +437,9 @@ var TestCaseFhirBase = class {
|
|
|
435
437
|
await this.#OutputLogMessage(`TerminateRunner [${this.#runner.id}]`);
|
|
436
438
|
await this.#ForcePublishTelemetryData();
|
|
437
439
|
if (this.fhirClient) {
|
|
438
|
-
|
|
440
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
441
|
+
this.Debug(chalk.magenta(`TestCaseFhirBase:TerminateRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
442
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
439
443
|
this.fhirClient.ResetSocket();
|
|
440
444
|
await Sleep(100);
|
|
441
445
|
this.fhirClient = null;
|
|
@@ -448,7 +452,9 @@ var TestCaseFhirBase = class {
|
|
|
448
452
|
await this.#OutputLogMessage(`Completed [${this.#runner.id}] [${JSON.stringify(this.#runner.instrumentData)}]`);
|
|
449
453
|
await this.#ForcePublishTelemetryData();
|
|
450
454
|
if (this.fhirClient) {
|
|
451
|
-
|
|
455
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
456
|
+
this.Debug(chalk.magenta(`TestCaseFhirBase:Completed(): Calling: [fhirClient.ResetSocket()]`));
|
|
457
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
452
458
|
this.fhirClient.ResetSocket();
|
|
453
459
|
await Sleep(100);
|
|
454
460
|
this.fhirClient = null;
|
|
@@ -469,7 +475,9 @@ var TestCaseFhirBase = class {
|
|
|
469
475
|
await this.#OutputLogMessage(`ResetRunner [${this.#runner.id}]`);
|
|
470
476
|
await this.#ForcePublishTelemetryData();
|
|
471
477
|
if (this.fhirClient) {
|
|
472
|
-
|
|
478
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
479
|
+
this.Debug(chalk.magenta(`TestCaseFhirBase:ResetRunner(): Calling: [fhirClient.ResetSocket()]`));
|
|
480
|
+
console.log(chalk.red(`************************************************************************************************`));
|
|
473
481
|
this.fhirClient.ResetSocket();
|
|
474
482
|
await Sleep(100);
|
|
475
483
|
this.fhirClient = null;
|