@nsshunt/ststestrunner 1.1.111 → 1.1.113
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.mjs
CHANGED
|
@@ -1001,7 +1001,10 @@ var TestCaseFhirBase = class {
|
|
|
1001
1001
|
}
|
|
1002
1002
|
ResetClient = () => {};
|
|
1003
1003
|
GetRandomSequenceFromIteration = () => {
|
|
1004
|
-
if (this.runner.iteration === 1)
|
|
1004
|
+
if (this.runner.iteration === 1) {
|
|
1005
|
+
const seedId = "myseed";
|
|
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) => {
|