npm i --save @nativescript/unit-test-runner
- 版本:3.0.4
- GitHub: https://github.com/NativeScript/nativescript-unit-test-runner
- NPM: https://npmjs.net.cn/package/%40nativescript%2Funit-test-runner
- 下载
- 昨天:0
- 上周:0
- 上个月:0
NativeScript 单元测试运行器
请参考 NativeScript CLI 的 ns test init
命令文档以了解使用方法。
如果在使用过程中遇到问题,请在此处记录:https://github.com/NativeScript/nativescript-cli/
故障排除
如果您遇到以下错误
Error: connect ECONNREFUSED ::1:9876
at TCPConnectWrap.afterConnect [as oncomplete] (node:net:1195:16)
当使用 Node 17 或更高版本时,请确保您的 karma.conf.js
文件中包含服务器主机名设置,例如
// web server hostname (ensure this is present)
hostname: '127.0.0.1',
// web server port
port: 9876,
请在此处查看 CLI 中添加此设置的更改集:这里