@nsshunt/ststestrunner 1.1.75 → 1.1.76
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
|
@@ -227,6 +227,7 @@ var TestCaseFhirBase = class {
|
|
|
227
227
|
this.#runner.instrumentData.message = [];
|
|
228
228
|
this.#runner.instrumentData.tx = 0;
|
|
229
229
|
this.#runner.instrumentData.rx = 0;
|
|
230
|
+
this.#runner.instrumentData.durationData = [];
|
|
230
231
|
await this.SleepImmediate();
|
|
231
232
|
};
|
|
232
233
|
ExtractOrigin = (uri) => {
|
|
@@ -553,6 +554,7 @@ var TestCaseFhirQueryBase = class extends TestCaseFhirBase {
|
|
|
553
554
|
this.runner.instrumentData.activeRequestCount--;
|
|
554
555
|
const diff = performance.now() - start;
|
|
555
556
|
this.runner.instrumentData.duration = diff;
|
|
557
|
+
this.runner.instrumentData.durationData.push(diff);
|
|
556
558
|
if (diff <= 5) this.runner.instrumentData.duration5++;
|
|
557
559
|
else if (diff <= 10) this.runner.instrumentData.duration10++;
|
|
558
560
|
else if (diff <= 20) this.runner.instrumentData.duration20++;
|