在我的一生中,我似乎无法在 Jasmine 测试中呈现 HTML。我一直在关注我能找到的所有教程,但没有任何效果。
require(['../js/app', '../js/views/demand/match'], function(App, Match) {
App.initialize();
beforeEach(function() {
this.view = new Match();
});
describe("Instantiation", function() {
it("returns the view object", function() {
expect(this.view.render()).toEqual(this.view);
});
it("produces the correct HTML", function() {
this.view.render();
var expectedHtml = '<a href="MatchLink"><h2>MatchLinkTitle</h2></a>';
expect(this.view.el.innerHTML).toEqual(expectedHtml);
});
});
});
上面的代码总是有一个空白的 innerHTML 属性。与 match.js (match.html) 文件关联的 HTML 根本没有显示出来。有人有想法么?