Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要找的基本上nosetest --pdb --pdb-failures是鼻子测试框架。
nosetest --pdb --pdb-failures
我正在使用 mocha 进行测试。我想做的是运行测试
mocha --break-on-exception --break-on-failure一旦遇到异常或断言失败,它将停止执行测试,将为我启动节点检查器,并允许我内省正在运行的代码。
mocha --break-on-exception --break-on-failure
这在 node.js 世界的任何地方都可能,使用任何库或测试框架吗?
将此行添加到您的测试中:
if (global.v8debug) global.v8debug.Debug.setBreakOnException()
开始mocha --debug-brk,连接节点检查器,继续并等待异常
mocha --debug-brk