作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Jest 覆盖了原生的 console.log 方法来收集每个测试的日志输出。然而,这会使使用调试器变得非常困难,因为不会打印任何内容。
有没有办法在 Jest 测试中调用 native console.log 方法?
最佳答案
您可以通过传递自定义 TestEnvironment 和自定义 Reporter(使用 jest@24.7.1 测试)来实现此目的:
// debugTestEnv.js
const NodeEnvironment = require('jest-environment-node')
const console = require('console')
const vanillaConsole = new console.Console({ stdout: process.stdout, stderr: process.stderr })
class DebugTestEnv extends NodeEnvironment {
async setup() {
await super.setup()
this.prevConsole = this.global.console
this.global.console = vanillaConsole
}
async teardown() {
this.global.console = this.prevConsole
await super.teardown()
}
}
module.exports = DebugTestEnv
// debugReporter.js
// In Jest, the DefaultEnvironment constructor changes `process.stdout` and `process.stderr`
// That's why we pass a custom reporter to Jest (we use Jest's BaseReporter for this purpose)
module.exports = require('@jest/reporters/build/base_reporter').default
然后运行一个特定的测试:
jest --runInBand --no-cache --watchAll=false -t="testNameToDebug" --env="./path/to/debugTestEnv.js" --reporters="./path/to/debugReporter.js"
这也适用于 create-react-app,只需将 jest
替换为 react-scripts test
。
关于javascript - 如何在 Jest 测试中调用 native console.log 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52904431/
我是一名优秀的程序员,十分优秀!