Remove shared-components slow reporter to un-break CI

as we don't have a js-sdk dep in shared-components
This commit is contained in:
Michael Telatynski
2026-01-22 10:16:52 +00:00
committed by GitHub
parent d6d647f56d
commit e0b3e013ab
@@ -46,11 +46,6 @@ const config: Config = {
// if we're running under GHA, enable the GHA reporter
if (env["GITHUB_ACTIONS"] !== undefined) {
const reporters: Config["reporters"] = [["github-actions", { silent: false }], "summary"];
// if we're running against the develop branch, also enable the slow test reporter
if (env["GITHUB_REF"] == "refs/heads/develop") {
reporters.push("<rootDir>/../../test/slowReporter.cjs");
}
config.reporters = reporters;
}