From c4ef57b5f1b43409cc3c4bb856dfb2f36589f20e Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 5 Nov 2025 11:16:48 +0000 Subject: [PATCH] Fix the slow test reporter (#31170) Only runs on develop so we didn't notice --- packages/shared-components/jest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/shared-components/jest.config.ts b/packages/shared-components/jest.config.ts index 2e88689024..993fcc680b 100644 --- a/packages/shared-components/jest.config.ts +++ b/packages/shared-components/jest.config.ts @@ -50,7 +50,7 @@ if (env["GITHUB_ACTIONS"] !== undefined) { // 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"); + reporters.push("/../../test/slowReporter.cjs"); } config.reporters = reporters; }