jest 不输出descripbe和it的提示信息,什么情况

发布于 2022-09-11 23:49:05 字数 1456 浏览 15 评论 0

问题描述

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

网名女生简单气质 2022-09-18 23:49:05

刚学jest,我也有同样的疑问,请问楼主找到答案了吗?

七七 2022-09-18 23:49:05

{
//...
verbose: true
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文