@nsshunt/ststestrunner 1.1.77 → 1.1.78
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
|
@@ -571,6 +571,7 @@ var TestCaseFhirQueryBase = class extends TestCaseFhirBase {
|
|
|
571
571
|
this.runner.instrumentData.activeRequestCount--;
|
|
572
572
|
const diff = performance.now() - start;
|
|
573
573
|
this.runner.instrumentData.duration = diff;
|
|
574
|
+
this.runnerDurationList.push(diff);
|
|
574
575
|
if (diff <= 5) this.runner.instrumentData.duration5++;
|
|
575
576
|
else if (diff <= 10) this.runner.instrumentData.duration10++;
|
|
576
577
|
else if (diff <= 20) this.runner.instrumentData.duration20++;
|