@nsshunt/ststestrunner 1.1.40 → 1.1.42
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
|
@@ -35840,18 +35840,19 @@ var WorkerTestCaseLogger = class {
|
|
|
35840
35840
|
//#endregion
|
|
35841
35841
|
//#region src/libmodule/workerFhirTestCases.ts
|
|
35842
35842
|
var WorkerFhirTestCases = class extends AbstractRunnerExecutionWorker {
|
|
35843
|
+
_options;
|
|
35843
35844
|
_resourceDataGenerator;
|
|
35844
35845
|
_workerTestCaseLogger;
|
|
35845
|
-
|
|
35846
|
-
constructor() {
|
|
35846
|
+
constructor(options) {
|
|
35847
35847
|
super();
|
|
35848
|
+
this._options = options;
|
|
35848
35849
|
this._resourceDataGenerator = new ResourceDataGenerator();
|
|
35849
35850
|
this._workerTestCaseLogger = new WorkerTestCaseLogger({
|
|
35850
|
-
outputToDefaultLogger:
|
|
35851
|
-
imendpoint:
|
|
35852
|
-
import:
|
|
35853
|
-
imsocketnamespace:
|
|
35854
|
-
rooms: [this.
|
|
35851
|
+
outputToDefaultLogger: this._options.outputToDefaultLogger,
|
|
35852
|
+
imendpoint: this._options.imendpoint,
|
|
35853
|
+
import: this._options.import,
|
|
35854
|
+
imsocketnamespace: this._options.imsocketnamespace,
|
|
35855
|
+
rooms: [...this._options.rooms]
|
|
35855
35856
|
});
|
|
35856
35857
|
}
|
|
35857
35858
|
get resourceDataGenerator() {
|