@nsshunt/ststestrunner 1.0.28 → 1.0.29
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
|
@@ -12831,16 +12831,19 @@ class TestCaseFhirBase {
|
|
|
12831
12831
|
__publicField(this, "StopRunner", async () => {
|
|
12832
12832
|
await __privateGet(this, _OutputLogMessage2).call(this, `StopRunner [${__privateGet(this, _runner2).id}]`);
|
|
12833
12833
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12834
|
+
__privateGet(this, _fhirClient).Terminate();
|
|
12834
12835
|
return true;
|
|
12835
12836
|
});
|
|
12836
12837
|
__publicField(this, "TerminateRunner", async () => {
|
|
12837
12838
|
await __privateGet(this, _OutputLogMessage2).call(this, `TerminateRunner [${__privateGet(this, _runner2).id}]`);
|
|
12838
12839
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12840
|
+
__privateGet(this, _fhirClient).Terminate();
|
|
12839
12841
|
return true;
|
|
12840
12842
|
});
|
|
12841
12843
|
__publicField(this, "Completed", async () => {
|
|
12842
12844
|
await __privateGet(this, _OutputLogMessage2).call(this, `Completed [${__privateGet(this, _runner2).id}] [${JSON.stringify(__privateGet(this, _runner2).instrumentData)}]`);
|
|
12843
12845
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12846
|
+
__privateGet(this, _fhirClient).Terminate();
|
|
12844
12847
|
return true;
|
|
12845
12848
|
});
|
|
12846
12849
|
__publicField(this, "PauseRunner", async () => {
|