gpt4 book ai didi

javascript - 如何在 Jest 测试中调用 native console.log 方法?

转载 作者:行者123 更新时间:2023-11-30 06:21:17 24 4
gpt4 key购买 nike

Jest 覆盖了原生的 console.log 方法来收集每个测试的日志输出。然而,这会使使用调试器变得非常困难,因为不会打印任何内容。

enter image description here

有没有办法在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com