@nsshunt/ststestrunner 1.0.42 → 1.0.43
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
|
@@ -12851,18 +12851,21 @@ class TestCaseFhirBase {
|
|
|
12851
12851
|
__publicField(this, "StopRunner", async () => {
|
|
12852
12852
|
await __privateGet(this, _OutputLogMessage2).call(this, `StopRunner [${__privateGet(this, _runner2).id}]`);
|
|
12853
12853
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12854
|
+
console.log(`TestCaseFhirBase:StopRunner(): Calling: [#fhirClient.Terminate()]`);
|
|
12854
12855
|
__privateGet(this, _fhirClient).Terminate();
|
|
12855
12856
|
return true;
|
|
12856
12857
|
});
|
|
12857
12858
|
__publicField(this, "TerminateRunner", async () => {
|
|
12858
12859
|
await __privateGet(this, _OutputLogMessage2).call(this, `TerminateRunner [${__privateGet(this, _runner2).id}]`);
|
|
12859
12860
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12861
|
+
console.log(`TestCaseFhirBase:TerminateRunner(): Calling: [#fhirClient.Terminate()]`);
|
|
12860
12862
|
__privateGet(this, _fhirClient).Terminate();
|
|
12861
12863
|
return true;
|
|
12862
12864
|
});
|
|
12863
12865
|
__publicField(this, "Completed", async () => {
|
|
12864
12866
|
await __privateGet(this, _OutputLogMessage2).call(this, `Completed [${__privateGet(this, _runner2).id}] [${JSON.stringify(__privateGet(this, _runner2).instrumentData)}]`);
|
|
12865
12867
|
await __privateGet(this, _ForcePublishTelemetryData2).call(this);
|
|
12868
|
+
console.log(`TestCaseFhirBase:Completed(): Calling: [#fhirClient.Terminate()]`);
|
|
12866
12869
|
__privateGet(this, _fhirClient).Terminate();
|
|
12867
12870
|
return true;
|
|
12868
12871
|
});
|