本文介绍了在调试模式下,当使用节点检查器时,mocha不会停止在规范文件中的调试器语句上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我用-debug-brk运行mocha,并使用node-inspector打开chrome开发工具时,调试器将跳过我放在我的specfile中的任何调试器语句。
When I run mocha with --debug-brk and open chrome dev tools with node-inspector, the debugger skips over any debugger statements that I put in my specfile.
I 可以让调试器语句在模块文件中工作,只要我遵循。您可以在浏览器中加载节点检查器UI后立即在您的spec文件中设置断点。
The problem is fixed in my fork of node-inspector: https://github.com/strongloop/node-inspector. You can set breakpoints anywhere in your specfiles immediately after the node-inspector UI is loaded in your browser.
这篇关于在调试模式下,当使用节点检查器时,mocha不会停止在规范文件中的调试器语句上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!