我正在使用茉莉花进行测试。
基本上我想确保为给定的 jQuery 选择器执行特定的方法。
例如
$('.hidden-tag').show()
目前我有以下内容:
describe("Test", function () {
beforeEach(function () {
spyOn(window, '$').andCallThrough();
loadFixtures('my_fixture.html');
});
it("should call show method on the jQuery selector '.hidden-tag'", function () {
expect($).toHaveBeenCalledWith('.hidden-tag');
});
});
第一部分有效。我如何让它检查“显示”方法是否被调用?