@nsshunt/ststestrunner 1.1.66 → 1.1.67
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 +17 -0
- package/dist/ststestrunner.cjs.map +1 -1
- package/dist/ststestrunner.mjs +17 -0
- package/dist/ststestrunner.mjs.map +1 -1
- package/package.json +1 -1
- package/types/libmodule/testCaseFhirBase.d.ts.map +1 -1
- package/types/libmodule/workerFhirTestCases.d.ts +2 -0
- package/types/libmodule/workerFhirTestCases.d.ts.map +1 -1
package/dist/ststestrunner.cjs
CHANGED
|
@@ -154,6 +154,19 @@ var TestCaseFhirBase = class {
|
|
|
154
154
|
GetFhirSocketClient = async () => {
|
|
155
155
|
try {
|
|
156
156
|
this.#clientSocketFetchCount++;
|
|
157
|
+
const optionszz = this.runnerExecutionWorker.Options;
|
|
158
|
+
if (optionszz) {
|
|
159
|
+
console.log(`-----------------------------------------------------------------------------------------------------------------`);
|
|
160
|
+
console.log(`optionszz`);
|
|
161
|
+
console.log(optionszz);
|
|
162
|
+
console.log(this.runnerExecutionWorker.id);
|
|
163
|
+
console.log(`-----------------------------------------------------------------------------------------------------------------`);
|
|
164
|
+
} else {
|
|
165
|
+
console.log(`-----------------------------------------------------------------------------------------------------------------`);
|
|
166
|
+
console.log(`no optionszz`);
|
|
167
|
+
console.log(this.runnerExecutionWorker.id);
|
|
168
|
+
console.log(`-----------------------------------------------------------------------------------------------------------------`);
|
|
169
|
+
}
|
|
157
170
|
let fhirClient = this.runnerExecutionWorker.GetFhirClient();
|
|
158
171
|
if (fhirClient) return fhirClient;
|
|
159
172
|
const fhirOptions = this.#options.fhirOptions;
|
|
@@ -35805,11 +35818,15 @@ var WorkerFhirTestCases = class extends _nsshunt_stsrunnerframework.AbstractRunn
|
|
|
35805
35818
|
_options;
|
|
35806
35819
|
_resourceDataGenerator;
|
|
35807
35820
|
fhirClient = void 0;
|
|
35821
|
+
_id = crypto.randomUUID();
|
|
35808
35822
|
constructor(options) {
|
|
35809
35823
|
super();
|
|
35810
35824
|
this._options = options;
|
|
35811
35825
|
this._resourceDataGenerator = new ResourceDataGenerator();
|
|
35812
35826
|
}
|
|
35827
|
+
get id() {
|
|
35828
|
+
return this._id;
|
|
35829
|
+
}
|
|
35813
35830
|
GetFhirClient = () => {
|
|
35814
35831
|
return this.fhirClient;
|
|
35815
35832
|
};
|