Fix jest config on develop (#10580)

#10569 broke it
This commit is contained in:
Richard van der Hoff 2023-04-12 13:44:25 +01:00 committed by GitHub
parent 9c19cd48fe
commit ec83855938
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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("<rootDir>/spec/slowReporter.js");
reporters.push("<rootDir>/test/slowReporter.js");
}
config.reporters = reporters;
}