Jest has this feature to log the line that outputs to console
methods.
In some cases, this can become annoying:
console.log _modules/log.js:37
ℹ login.0 screenshot start
console.time _modules/init.js:409
login.0.screenshot: 0.33ms
console.time _modules/init.js:394
0 | login.0: 0.524ms
console.log _modules/log.js:37
ℹ login.1 screenshot start
Any idea how I can turn it off?
The (current) simplest solution is this:
import console from "console"
global.console = console
setupFilesAfterEnv: ["./config.js"]
Enjoi!