我希望能够使用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测试?
答案 0 :(得分:0)
从NativeScript CLI 2.5.0版开始,watch
选项默认设置为true。看起来这会破坏--debug-brk
命令中的test
选项。您可以通过将watch
选项设置为false来绕过它。为了实现这一点,只需执行:
$ tns test ios --debug-brk --no-watch