Skip to content

Commit d413f50

Browse files
authored
Rename slowReporter to reflect that it is CommonJS (#4356)
Fix tests failing as a result of #4355. This wasn't detected in CI because the slowReporter is only enabled when building against develop.
1 parent b8e8b14 commit d413f50

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

jest.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if (env["GITHUB_ACTIONS"] !== undefined) {
3939

4040
// if we're running against the develop branch, also enable the slow test reporter
4141
if (env["GITHUB_REF"] == "refs/heads/develop") {
42-
reporters.push("<rootDir>/spec/slowReporter.js");
42+
reporters.push("<rootDir>/spec/slowReporter.cjs");
4343
}
4444
config.reporters = reporters;
4545
}
File renamed without changes.

0 commit comments

Comments
 (0)