@nsshunt/ststestrunner 1.1.111 → 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.
@@ -1006,7 +1006,10 @@ var TestCaseFhirBase = class {
1006
1006
  }
1007
1007
  ResetClient = () => {};
1008
1008
  GetRandomSequenceFromIteration = () => {
1009
- if (this.runner.iteration === 1) this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, "myseed");
1009
+ if (this.runner.iteration === 1) {
1010
+ const seedId = `${this.#runner.workerId}-${this.#runner.workerId}`;
1011
+ this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, seedId);
1012
+ }
1010
1013
  return this.randomSequence[this.runner.iteration];
1011
1014
  };
1012
1015
  Error = (message) => {