From e0b3e013ab6782953b610e018d126151146f02ec Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 22 Jan 2026 10:16:52 +0000 Subject: [PATCH] Remove shared-components slow reporter to un-break CI as we don't have a js-sdk dep in shared-components --- packages/shared-components/jest.config.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/shared-components/jest.config.ts b/packages/shared-components/jest.config.ts index c0b8cec464..f4c49235f9 100644 --- a/packages/shared-components/jest.config.ts +++ b/packages/shared-components/jest.config.ts @@ -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("/../../test/slowReporter.cjs"); - } config.reporters = reporters; }