在nativescript

时间:2017-02-20 01:26:31

标签: unit-testing debugging mocha nativescript

我希望能够使用VS Code调试Mocha测试。但是,如果我跑:

tns test -ios --debug-brk

我收到错误消息:

You cannot use --watch and --debug-brk simultaneously. Remove one of the flags and try again.

我目前正在使用最新的nativescript-cli。

是否可以使用VS Code在NativeScript中调试Mocha测试?

1 个答案:

答案 0 :(得分:0)

从NativeScript CLI 2.5.0版开始,watch选项默认设置为true。看起来这会破坏--debug-brk命令中的test选项。您可以通过将watch选项设置为false来绕过它。为了实现这一点,只需执行: $ tns test ios --debug-brk --no-watch