@nsshunt/ststestrunner 1.1.110 → 1.1.112

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.
@@ -1001,7 +1001,10 @@ var TestCaseFhirBase = class {
1001
1001
  }
1002
1002
  ResetClient = () => {};
1003
1003
  GetRandomSequenceFromIteration = () => {
1004
- if (this.runner.iteration === 1) this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, this.runner.options.description);
1004
+ if (this.runner.iteration === 1) {
1005
+ const seedId = `${this.#runner.workerId}-${this.#runner.workerId}`;
1006
+ this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, seedId);
1007
+ }
1005
1008
  return this.randomSequence[this.runner.iteration];
1006
1009
  };
1007
1010
  Error = (message) => {