4
example :
test("An async test", function(){
stop();
expect(1);
model.save({} , {
success : function(model,resp){
ok(model.get('id') != null, "Got id");
start();
}
});
});
它給了我的預期至少一個斷言錯誤 ,但沒有被運行 - 呼叫期望(0)接受零個斷言。Qunit測試失敗的異步調用
對於那些誰也使用2.x的閱讀,而註冊一個斷言和start()方法,只檢查https://api.qunitjs.com/async/ – smonff