当前位置 : 主页 > 手机开发 > cordova >

单元测试 – cordova插件单元测试

来源:互联网 收集:自由互联 发布时间:2021-06-10
大多数Cordova插件都有一个名为“tests”的文件夹,它托管了plugin.xml和tests.js.任何人都可以了解如何运行它们,以及需要运行什么?似乎没有相关文件.谢谢! 有一个官方的Cordova库用于运行
大多数Cordova插件都有一个名为“tests”的文件夹,它托管了plugin.xml和tests.js.任何人都可以了解如何运行它们,以及需要运行什么?似乎没有相关文件.谢谢! 有一个官方的Cordova库用于运行单元测试.

从github上的Cordova Plugin Test Framework:

The org.apache.cordova.test-framework plugin does two things:

  1. Defines the interface for cordova plugins to write tests
  2. Provides a test harness for actually running those tests

Tests run directly
inside existing cordova projects, so you can rapidly switch between
testing and development. You can also be sure that your test suite is
testing the exact versions of plugins and platforms that your app is
using.

访问该页面;有关于运行现有测试和使用自己的插件框架的大量信息.

网友评论