gpt4 book ai didi

javascript - 将 Jest 文本覆盖记者输出到 .txt

转载 作者:行者123 更新时间:2023-11-29 20:55:51 25 4
gpt4 key购买 nike

Jest 允许您像这样在 package.json 中指定一个报道报告者

{
...

"jest": {
"coverageDirectory": "./coverage",
"coverageReporters": ["json", "text", ...]
}

...
}

但是,这只会将 .json 摘要输出到覆盖目录。它只将文本版本打印到控制台。有没有办法将文本版本也输出到 coverage 文件夹中的 .txt 文件?

我一直在引用文档 here ,表示它与 Istanbul reporters 中的任何一个兼容.文 Istanbul 尔记者appears to have support for writing to a file .有什么办法可以利用它吗?

最佳答案

在你的 jest 配置中,你可以指定 file 选项,以及可选的 dir 选项,默认为当前工作目录:

"jest": {
"coverageReporters": ["text", { file: 'coverage.txt' }]
}

有关可用选项的信息,请参阅文档 here .

关于javascript - 将 Jest 文本覆盖记者输出到 .txt,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49419287/

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