I’ve added test coverage configuration to web/jest.config.js file:
/** @type {import('jest').Config} */
const config = {
rootDir: "../",
preset: "@redwoodjs/testing/config/jest/web",
+ coverageReporters: ["text", "html"],
}
But now having this annoying warning in the terminal:
Does anyone know how to make Jest validator happy and get rid of this message?