@nsshunt/ststestrunner 1.0.15 → 1.0.16
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
|
@@ -12537,16 +12537,25 @@ class TestCaseFhirBase {
|
|
|
12537
12537
|
__publicField(this, "StopRunner", async () => {
|
|
12538
12538
|
await __privateGet(this, _OutputLogMessage2).call(this, `StopRunner [${__privateGet(this, _runner2).id}]`);
|
|
12539
12539
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12540
|
+
if (this.socket) {
|
|
12541
|
+
this.socket.disconnect();
|
|
12542
|
+
}
|
|
12540
12543
|
return true;
|
|
12541
12544
|
});
|
|
12542
12545
|
__publicField(this, "TerminateRunner", async () => {
|
|
12543
12546
|
await __privateGet(this, _OutputLogMessage2).call(this, `TerminateRunner [${__privateGet(this, _runner2).id}]`);
|
|
12544
12547
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12548
|
+
if (this.socket) {
|
|
12549
|
+
this.socket.disconnect();
|
|
12550
|
+
}
|
|
12545
12551
|
return true;
|
|
12546
12552
|
});
|
|
12547
12553
|
__publicField(this, "Completed", async () => {
|
|
12548
12554
|
await __privateGet(this, _OutputLogMessage2).call(this, `Completed [${__privateGet(this, _runner2).id}] [${JSON.stringify(__privateGet(this, _runner2).instrumentData)}]`);
|
|
12549
12555
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12556
|
+
if (this.socket) {
|
|
12557
|
+
this.socket.disconnect();
|
|
12558
|
+
}
|
|
12550
12559
|
return true;
|
|
12551
12560
|
});
|
|
12552
12561
|
__publicField(this, "PauseRunner", async () => {
|