describe("jWYSIWYG", function () { beforeEach(function () { $("textarea").wysiwyg({ rmUnusedControls: true, controls: { bold: { visible: true }, html: { visible: true } } }); }); afterEach(function () { $("textarea").wysiwyg("destroy"); }); it('should get correct args in both case', function () { spyOn($.wysiwyg, "insertHtml"); // 1st case $("#id1").wysiwyg("insertHtml", "
111
"); // 2nd case $.wysiwyg.insertHtml($("#id2"), "222
"); expect($.wysiwyg.insertHtml).toHaveBeenCalledWith($("#id1"), "111
"); expect($.wysiwyg.insertHtml).toHaveBeenCalledWith($("#id2"), "222
"); }); });