2017-02-20 123 views
1

我希望能夠使用VS Code調試Mocha測試。但是,如果我運行:在nativescript中調試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代碼在NativeScript中調試Mocha測試?

回答

0

從NativeScript CLI 2.5.0版本開始,watch選項默認設置爲true。它看起來像打破test命令中的--debug-brk選項。您可以通過將watch選項設置爲false來繞過它。爲了實現這一點,請執行: $ tns test ios --debug-brk --no-watch

+0

謝謝!它做了詭計。不幸的是,Nativescript檢查器崩潰了2次,超過3次。我能夠(非常)簡單地調試測試。 – biziosan