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; }