Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何像使用 JUnit 一样在 JsUnit 中创建测试套件?我有很多测试要一起运行。例如,我想将 test1.html 和 test2.html 中的两个测试组合在一起运行。
在你的页面中写一个suite function返回一个JsUnitTestSuite.
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; }