From ec838559384b17dbc199bc0bfdc4239900eec8c3 Mon Sep 17 00:00:00 2001 From: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Date: Wed, 12 Apr 2023 13:44:25 +0100 Subject: [PATCH] Fix jest config on develop (#10580) #10569 broke it --- jest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.ts b/jest.config.ts index 3351cdfef9..818a164ddd 100644 --- a/jest.config.ts +++ b/jest.config.ts @@ -47,7 +47,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("/spec/slowReporter.js"); + reporters.push("/test/slowReporter.js"); } config.reporters = reporters; }