1

如何像使用 JUnit 一样在 JsUnit 中创建测试套件?我有很多测试要一起运行。例如,我想将 test1.html 和 test2.html 中的两个测试组合在一起运行。

4

1 回答 1

0

在你的页面中写一个suite function返回一个JsUnitTestSuite.

function suite(){
  var suite = new JsUnitTestSuite();
  suite.addTestPage("/path/test1.html");//use the addTestPage() method to add a test page
  suite.addTestPage("/path/test2.html");
  return suite;
}
于 2018-07-11T22:06:47.523 回答