@nsshunt/ststestrunner 1.0.61 → 1.0.62
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 +1 -8
- package/dist/ststestrunner.mjs.map +1 -1
- package/dist/ststestrunner.umd.js +1 -8
- package/dist/ststestrunner.umd.js.map +1 -1
- package/package.json +1 -1
- package/types/testCaseFhir02.d.ts.map +1 -1
- package/types/testCaseFhir03.d.ts.map +1 -1
- package/types/testCaseFhir09.d.ts.map +1 -1
- package/types/testCaseFhirBase.d.ts.map +1 -1
package/dist/ststestrunner.mjs
CHANGED
|
@@ -12811,13 +12811,12 @@ class TestCaseFhirBase {
|
|
|
12811
12811
|
await Sleep(10);
|
|
12812
12812
|
}
|
|
12813
12813
|
console.log(`Finished load for VU: [${VU}]`);
|
|
12814
|
-
console.log(chalk$1.magenta(`StartTestDataLoad(): End`));
|
|
12815
12814
|
console.log(`First 10 entries`);
|
|
12816
12815
|
for (let i = 0; i < 10; i++) {
|
|
12817
12816
|
console.log(__privateGet(this, _randomDataRecordset)[i].id);
|
|
12818
12817
|
}
|
|
12819
12818
|
console.log(`block num: [${blockNum}] length: [${__privateGet(this, _randomDataRecordset).length}] VU: [${VU}]`);
|
|
12820
|
-
|
|
12819
|
+
console.log(chalk$1.magenta(`StartTestDataLoad(): End`));
|
|
12821
12820
|
});
|
|
12822
12821
|
__privateAdd(this, _ForcePublishTelemetryData2, async () => {
|
|
12823
12822
|
await __privateGet(this, _PublishTelemetryData2).call(this);
|
|
@@ -13280,8 +13279,6 @@ class TestCaseFhir02 extends TestCaseFhirBase {
|
|
|
13280
13279
|
this.runner.instrumentData.message.push(chalk$1.green(`Iteration: [${iteration} #authUtilsNode(): Agent Reset`));
|
|
13281
13280
|
}
|
|
13282
13281
|
const personRecord = this.GetPersonRecord(`${options.personPrefix}`, iteration);
|
|
13283
|
-
console.log(`***************************************************************`);
|
|
13284
|
-
console.log(`case 02 ID: [${personRecord.id}]`);
|
|
13285
13282
|
try {
|
|
13286
13283
|
const retVal = await this.fhirClient.CreateResource("Person", personRecord, (error) => {
|
|
13287
13284
|
this.LogErrorMessage(`test(POST /stsresource and query using filter): ${error}`);
|
|
@@ -13320,8 +13317,6 @@ class TestCaseFhir03 extends TestCaseFhirBase {
|
|
|
13320
13317
|
this.runner.instrumentData.message.push(chalk$1.green(`Iteration: [${iteration} #authUtilsNode(): Agent Reset`));
|
|
13321
13318
|
}
|
|
13322
13319
|
const personRecord = this.GetPersonRecord(`${options.personPrefix}`, iteration);
|
|
13323
|
-
console.log(`***************************************************************`);
|
|
13324
|
-
console.log(`case 03 ID: [${personRecord.id}]`);
|
|
13325
13320
|
const retVal = await this.fhirClient.GetResource("Person", personRecord.id, null, (error) => {
|
|
13326
13321
|
this.LogErrorMessage(`test(POST /stsresource and query using filter): ${error}`);
|
|
13327
13322
|
this.runner.instrumentData.errorCount++;
|
|
@@ -13549,8 +13544,6 @@ class TestCaseFhir09 extends TestCaseFhirBase {
|
|
|
13549
13544
|
this.runner.instrumentData.message.push(chalk$1.green(`Iteration: [${iteration} #authUtilsNode(): Agent Reset`));
|
|
13550
13545
|
}
|
|
13551
13546
|
const personRecord = this.GetPersonRecord(`${options.personPrefix}`, iteration);
|
|
13552
|
-
console.log(`***************************************************************`);
|
|
13553
|
-
console.log(`case 09 ID: [${personRecord.id}]`);
|
|
13554
13547
|
if (personRecord.text) {
|
|
13555
13548
|
await this.fhirClient.DeleteResource("Person", personRecord.id, (error) => {
|
|
13556
13549
|
this.LogErrorMessage(`test(POST /stsresource and query using filter): ${error}`);
|