在QUnit中,如何评估asyncTest()中的抛出错误?

时间:2014-02-07 16:35:20

标签: javascript qunit

例如,

asyncTest('test1', function() {
    var callback = function() {
        throw new TypeError('foobar'); // <-- i want to evaluate this error is being thrown
    }
    throws(
        function() {
            anAsyncFunction(callback);
        }
    );
});

问题是,把throws()放在哪里,把start()放在哪里?

感谢。

0 个答案:

没有答案