を使用してjasmine
、を返す javascript モジュールをテストしようとしていますMarionette.CompositeView
。
以下は、javascript module(2) と javascript unit-test(1) です。
私の質問は、(1) からレンダリングされたビューにアクセスする方法ですか?
詳細については、コードのコメントを参照してください。
PS:
1) javascript モジュールは正しくレンダリングされたビューを生成します。
2) テストを実行すると、javascript コンソールに次のエラーが表示されます。backbone.marionette.min.js:9
Uncaught NoTemplateError: Could not find template: 'function (context, options) {
if (!compiled) {
compiled = compile();
}
return compiled.call(this, context, options);
}'
3)私は使用しているので、次のようhandlebars
に書き直しましたMarionette.Renderer.render
:
enter code here
define([
'marionette'
], function (Marionette) {
Marionette.Renderer.render = function (template, data) {
return template(data);
};
});
(1)
(function () {
'use strict';
define([
// some code
], function (MyView) {
describe('Layout App - Header View ', function () {
beforeEach(function () {
this.view = new MyView({
currentUser: new Backbone.Model()
});
});
describe('Instantiation', function () {
it('should create a div element', function () {
expect(this.view.el.nodeName).toEqual('DIV'); // it works
});
});
describe("Rendering", function () {
it("returns the view object", function () {
console.log(this.view.render()); // undefined // why?
expect(this.view.render()).toEqual(this.view); // it fails
});
});
});
});
});
(2)
define([
// some code
], function (myTemplate, MyItemView) {
return Marionette.CompositeView.extend({
template: myTemplate,
itemView: MyItemView,
// some code
});
});