QUnit:jQuery的单元测试框架,但不仅限于jQuery(从这个工具不需要引用jquery.js可以看出)
index.html
QUnit Example
api.js
function sum(a, b){ return a + b;}
tests.js
QUnit.module( "OnRead", { //初始化 beforeEach: function() { console.log("setup"); }, //清理 afterEach: function() { console.log("clean"); }});//测试用例QUnit.test( "sum", function( assert ) { console.log("sum"); assert.ok( 1 == "1", "Passed!" );});
直接执行index.html