Rename slowReporter to reflect that it is CommonJS (#4356)

Fix tests failing as a result of
https://github.com/matrix-org/matrix-js-sdk/pull/4355. This wasn't detected in
CI because the slowReporter is only enabled when building against develop.
This commit is contained in:
Richard van der Hoff
2024-08-20 21:48:27 +01:00
committed by GitHub
parent b8e8b14375
commit d413f5042e
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -39,7 +39,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("<rootDir>/spec/slowReporter.js");
reporters.push("<rootDir>/spec/slowReporter.cjs");
}
config.reporters = reporters;
}