@nsshunt/ststestrunner 1.1.23 → 1.1.25
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
|
@@ -526,7 +526,7 @@ var TestCaseFhirQueryBase = class extends TestCaseFhirBase {
|
|
|
526
526
|
this.runner.instrumentData.activeRequestCount--;
|
|
527
527
|
const diff = performance.now() - start;
|
|
528
528
|
this.runner.instrumentData.duration = diff;
|
|
529
|
-
if (diff >
|
|
529
|
+
if (diff > 150) console.debug(chalk.default.magenta(`*** ==> Long execution: [${diff}]`));
|
|
530
530
|
await this.PublishTelemetry();
|
|
531
531
|
return true;
|
|
532
532
|
};
|