asyncTestなしで次のコードがあるとします
setTimeout(function(){
test ("test1", function(){
ok(true, "test1 works");
});
}, 2000);
そして、asynTestを使用したこのコード
asyncTest ("test1", function(){
setTimeout(function(){
ok(true, "test1 works");
start();
}, 2000);
});
私の質問は、これら2つの違いは何ですか?ありがとう。