作为一个例子,我试图调试这个(伪代码):
spyOn(form, 'append').and.callThrough();
baseRecord.$fillForm(form, params, '[namespace]');
console.log(JSON.stringify(form.append));
expect(form.append.argsForCall).toEqual(...);
业力给了我:
LOG: function () { ... }
没有关于该功能内容的信息。
答案 0 :(得分:1)