@nsshunt/ststestrunner 1.1.73 → 1.1.74
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
|
@@ -557,9 +557,9 @@ var TestCaseFhirQueryBase = class extends TestCaseFhirBase {
|
|
|
557
557
|
this.Error(chalk.red(`TestCaseFhirQueryBase:ExecuteRunner(): *** ==> Long execution: [${diff}] Completed`));
|
|
558
558
|
this.Error(chalk.red(`TestCaseFhirQueryBase:ExecuteRunner(): ==> ${this._GetDetail()}`));
|
|
559
559
|
this.Error(chalk.red(`TestCaseFhirQueryBase:ExecuteRunner(): ==> Note: While not specifically an error, this is logged as an error.`));
|
|
560
|
-
} else if (diff >
|
|
561
|
-
this.Debug(chalk.rgb(
|
|
562
|
-
this.Debug(chalk.rgb(
|
|
560
|
+
} else if (diff > 200) {
|
|
561
|
+
this.Debug(chalk.rgb(155, 120, 200)(`TestCaseFhirQueryBase:ExecuteRunner(): *** ==> Long execution: [${diff}] Completed`));
|
|
562
|
+
this.Debug(chalk.rgb(155, 120, 200)(`TestCaseFhirQueryBase:ExecuteRunner(): ==> ${this._GetDetail()}`));
|
|
563
563
|
}
|
|
564
564
|
const longExecTimeoutpublishTelemetry = setTimeout(() => {
|
|
565
565
|
this.Error(chalk.red(`TestCaseFhirQueryBase:ExecuteRunner(): *** ==> Long execution: [${this._longExecTimeoutVal}] for PublishTelemetry()`));
|