2

我有一个功能:

var foo = function() {
    document.write( bar() );
};

我的茉莉花测试是:

describe('has a method, foo, that', function() {
    it('calls bar', function() {
        spyOn(window, 'bar').andReturn('');
        foo();
        expect(bar).toHaveBeenCalled();
    });
});

我的问题是测试通过并且foodocument.writes 到页面,完全覆盖了页面。有没有测试这个功能的好方法?

一个相关的问题

4

1 回答 1

6

You can spy on document.write

var foo = function () {
  document.write('bar');
};

describe("foo", function () {

  it("writes bar", function () {
    spyOn(document, 'write')
    foo()
    expect(document.write).toHaveBeenCalledWith('bar')
  });
});
于 2013-10-11T14:33:24.727 回答