@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.cjs
CHANGED
|
@@ -35863,18 +35863,19 @@ var WorkerTestCaseLogger = class {
|
|
|
35863
35863
|
//#endregion
|
|
35864
35864
|
//#region src/libmodule/workerFhirTestCases.ts
|
|
35865
35865
|
var WorkerFhirTestCases = class extends _nsshunt_stsrunnerframework.AbstractRunnerExecutionWorker {
|
|
35866
|
+
_options;
|
|
35866
35867
|
_resourceDataGenerator;
|
|
35867
35868
|
_workerTestCaseLogger;
|
|
35868
|
-
|
|
35869
|
-
constructor() {
|
|
35869
|
+
constructor(options) {
|
|
35870
35870
|
super();
|
|
35871
|
+
this._options = options;
|
|
35871
35872
|
this._resourceDataGenerator = new ResourceDataGenerator();
|
|
35872
35873
|
this._workerTestCaseLogger = new WorkerTestCaseLogger({
|
|
35873
|
-
outputToDefaultLogger:
|
|
35874
|
-
imendpoint:
|
|
35875
|
-
import:
|
|
35876
|
-
imsocketnamespace:
|
|
35877
|
-
rooms: [this.
|
|
35874
|
+
outputToDefaultLogger: this._options.outputToDefaultLogger,
|
|
35875
|
+
imendpoint: this._options.imendpoint,
|
|
35876
|
+
import: this._options.import,
|
|
35877
|
+
imsocketnamespace: this._options.imsocketnamespace,
|
|
35878
|
+
rooms: [...this._options.rooms]
|
|
35878
35879
|
});
|
|
35879
35880
|
}
|
|
35880
35881
|
get resourceDataGenerator() {
|