@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.
@@ -131,6 +131,19 @@ var TestCaseFhirBase = class {
131
131
  GetFhirSocketClient = async () => {
132
132
  try {
133
133
  this.#clientSocketFetchCount++;
134
+ const optionszz = this.runnerExecutionWorker.Options;
135
+ if (optionszz) {
136
+ console.log(`-----------------------------------------------------------------------------------------------------------------`);
137
+ console.log(`optionszz`);
138
+ console.log(optionszz);
139
+ console.log(this.runnerExecutionWorker.id);
140
+ console.log(`-----------------------------------------------------------------------------------------------------------------`);
141
+ } else {
142
+ console.log(`-----------------------------------------------------------------------------------------------------------------`);
143
+ console.log(`no optionszz`);
144
+ console.log(this.runnerExecutionWorker.id);
145
+ console.log(`-----------------------------------------------------------------------------------------------------------------`);
146
+ }
134
147
  let fhirClient = this.runnerExecutionWorker.GetFhirClient();
135
148
  if (fhirClient) return fhirClient;
136
149
  const fhirOptions = this.#options.fhirOptions;
@@ -35782,11 +35795,15 @@ var WorkerFhirTestCases = class extends AbstractRunnerExecutionWorker {
35782
35795
  _options;
35783
35796
  _resourceDataGenerator;
35784
35797
  fhirClient = void 0;
35798
+ _id = crypto.randomUUID();
35785
35799
  constructor(options) {
35786
35800
  super();
35787
35801
  this._options = options;
35788
35802
  this._resourceDataGenerator = new ResourceDataGenerator();
35789
35803
  }
35804
+ get id() {
35805
+ return this._id;
35806
+ }
35790
35807
  GetFhirClient = () => {
35791
35808
  return this.fhirClient;
35792
35809
  };