如何使用Jasmine处理异步代码中抛出的错误?

时间:2015-07-06 18:18:04

标签: javascript jasmine karma-runner

以下测试导致Jasmine(2.3.4,通过Karma在浏览器中运行)崩溃并且不运行任何后续测试

it('should report as failure and continue testing', function (done) {
  setTimeout(function () {
    throw new SyntaxError('some error');
    done();
  }, 1000);
});

如何将此测试正确地报告为失败并继续进行后续测试?

1 个答案:

答案 0 :(得分:0)

模拟时钟会给你预期的结果。 一般来说,模拟时钟是测试超时的最佳实践。

describe('foo', function () {
    beforeEach(function () {
        timerCallback = jasmine.createSpy("timerCallback");
        jasmine.clock().install();
    });
    afterEach(function () {
        jasmine.clock().uninstall();
    });
    it('should report as failure and continue testing', function (done) {
        setTimeout(function () {
            throw new SyntaxError('some error');
            done();
        }, 1000);
        jasmine.clock().tick(1001);
    });
});