jest调试visual studio代码

时间:2017-11-09 04:06:57

标签: debugging visual-studio-code jest

我试图在VS Code中调试我的jest单元测试。在这种程度上,我按照这里的说明进行操作

http://facebook.github.io/jest/docs/en/troubleshooting.html

node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand这样可以正常启动。

接下来,我将以下内容添加到launch.json

.navbar{
    position: fixed;
    top: 0px; // will always stay at the top of the page
    width: 100%;
    height: 50px;
    background: red;
}

然后按F5。它确实在第一行打破。但是,当我在我的一个测试中放置断点并按F5(继续)时,它存在以下错误消息

  {
    "type": "node",
    "request": "attach",
    "name": "Attach",
    "port": 9229
  },

这是前段时间工作,但在升级到最新版本的jest之后突然停止工作,做出反应。

1 个答案:

答案 0 :(得分:0)

谷歌搜索你的错误,我确实找到了一些建议:

Jest GitHub Issue #2736

From this Blog - Albert Gao

Additional Comments with this Blog