is any option for verbore output for testing by jest?
I can see which modules are mocked.
I tried
jasmine.VERBOSE = true;
but not working.
Thanks for answer.
答案 0 :(得分:33)
要在Jest中获取详细模式,您可以使用--verbose
标记运行Jest。
在packages.json
中,您可以写:
"scripts": {
"test": "jest --verbose"
},
然后您可以运行npm test
或者,如果您使用的是gulp-jest
,要使Jest处于详细模式,请在index.js
中找到gulp-jest
文件夹的node_modules
文件并添加详细信息:true到jest.runCLI
区块。
jest.runCLI({
config: options,
verbose: true
}
答案 1 :(得分:9)
简单添加package.json
{
...
...
"jest": {
"verbose": true
},
...
...
}