バックボーンアプリケーションをテストしようとしています。
単純なbackbone.viewをテストする必要がある場合、問題はありません。(ItemViewまたはCompositeView)
を使用して作成されたバックボーンビューをテストする必要があり、次のメッセージが表示された場合: Backbone.Marionette
Handlebars template
NoTemplateError: Could not find template:
function(context, options) {
if (!compiled) {
compiled = compile();
}
return compiled.call(this, context, options);
};
についてのコードfunction(context, options)
はから来ていhandlebars-1.0.0.beta.6.js
ます。
コードを修正する方法はありますか?
ここで私が実行しているテスト:
describe("AppViewMarionette", function() {
beforeEach(function(){
this.view = new AppViewMarionette();
});
describe("Rendering", function () {
it("returns the view object", function () {
expect(this.view.render()).toEqual(this.view);
});
});
});