@nsshunt/ststestrunner 1.1.109 → 1.1.111
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.cjs
CHANGED
|
@@ -1006,7 +1006,7 @@ 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,
|
|
1009
|
+
if (this.runner.iteration === 1) this.randomSequence = getRandomIterationOrder(this.runner.options.executionProfile.iterations, "myseed");
|
|
1010
1010
|
return this.randomSequence[this.runner.iteration];
|
|
1011
1011
|
};
|
|
1012
1012
|
Error = (message) => {
|
|
@@ -1322,7 +1322,7 @@ var TestCaseFhir02 = class extends TestCaseFhirQueryBase {
|
|
|
1322
1322
|
const client = await this.GetClient();
|
|
1323
1323
|
const __snapshot2 = this._CheckOutputLongDurationError(__snapshot1, "await this.GetClient()");
|
|
1324
1324
|
const prefix = this.runner.options.personPrefix;
|
|
1325
|
-
const personRecord = await this.GetPersonRecord(prefix, this.
|
|
1325
|
+
const personRecord = await this.GetPersonRecord(prefix, this.GetRandomSequenceFromIteration(), "1");
|
|
1326
1326
|
const __snapshot3 = this._CheckOutputLongDurationError(__snapshot2, "await this.GetPersonRecord()");
|
|
1327
1327
|
const retVal = await client.PostResource("Person", personRecord);
|
|
1328
1328
|
this._CheckOutputLongDurationError(__snapshot3, "await this.PostResource()");
|