@nsshunt/ststestrunner 1.1.113 → 1.1.114

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.
@@ -1007,7 +1007,8 @@ var TestCaseFhirBase = class {
1007
1007
  ResetClient = () => {};
1008
1008
  GetRandomSequenceFromIteration = () => {
1009
1009
  if (this.runner.iteration === 1) {
1010
- const seedId = "myseed";
1010
+ const { workerIndex, runnerIndex } = this.#runner.options;
1011
+ const seedId = `seed-${workerIndex}-${runnerIndex}`;
1011
1012
  this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, seedId);
1012
1013
  }
1013
1014
  return this.randomSequence[this.runner.iteration];