按照NativeScript Angular教程的说明进行操作,
({tns --version
报告5.0.0
)
tns create HelloWorld --template tns-template-blank-ng
cd HelloWorld
tns run ios --emulator
// The HelloWorld app runs correctly
tns test init
// Select Jasmine
tns test ios --emulator
// Get the error:
NativeScript / 10.3.1 (10.3.1; iPhone): Executed 0 of 0 ERROR (0.009 secs / 0 secs)
// Also get the warning:
CONSOLE ERROR DEPRECATION: Setting specFilter directly on Env is deprecated, please use the specFilter option in `configure`
如果我将生成的example.js
重命名为example.spec.js
,则会遇到相同的错误。如果将tests
文件夹移到apps
文件夹中,我会收到相同的错误。
我不知道如何使用NS 5运行单元测试。