jest 不输出descripbe和it的提示信息,什么情况
问题描述
launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/node_modules/jest/bin/jest",
"port": 9229,
"args": [
// "${file}" // 入口文件
"--watch"
],
"runtimeArgs": [
"--inspect-brk",
// "${workspaceRoot}/node_modules/.bin/jest",
// "--watch"
],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
测试文件
let question1 = require('./question');
describe('118 杨辉三角', () =>{
it('1', () => {
let res = question1(5);
expect(res).toEqual([ [ 1 ], [ 1, 1 ], [ 1, 2, 1 ], [ 1, 3, 3, 1 ], [ 1, 4, 6, 4, 1 ] ]);
});
it('ddd', () => {
})
});
输出
PASS src/index.test.js
PASS src/118/question.test.js
Test Suites: 2 passed, 2 total
Tests: 3 passed, 3 total
Snapshots: 0 total
Time: 1.567s
Ran all test suites.
怎么没有“118 杨辉三角”这样的字样呢,没搞定
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
刚学jest,我也有同样的疑问,请问楼主找到答案了吗?
{
//...
verbose: true
}