@nsshunt/ststestrunner 1.1.112 → 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.
@@ -1002,7 +1002,8 @@ var TestCaseFhirBase = class {
1002
1002
  ResetClient = () => {};
1003
1003
  GetRandomSequenceFromIteration = () => {
1004
1004
  if (this.runner.iteration === 1) {
1005
- const seedId = `${this.#runner.workerId}-${this.#runner.workerId}`;
1005
+ const { workerIndex, runnerIndex } = this.#runner.options;
1006
+ const seedId = `seed-${workerIndex}-${runnerIndex}`;
1006
1007
  this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, seedId);
1007
1008
  }
1008
1009
  return this.randomSequence[this.runner.iteration];