You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
679 B
JavaScript
23 lines
679 B
JavaScript
define([
|
|
'marionette',
|
|
'core/layout/module'
|
|
], function (Marionette, LayoutModule) {
|
|
describe('LayoutModule', function () {
|
|
it('→ exits', function () {
|
|
var app = new Marionette.Application();
|
|
var module = new LayoutModule('layout', app, {});
|
|
expect(module).not.toBeUndefined();
|
|
});
|
|
|
|
describe('→ onStart', function () {
|
|
it('→ will render view', function () {
|
|
var app = new Marionette.Application();
|
|
var module = new LayoutModule('layout', app, {});
|
|
spyOn(module.View.prototype, 'render');
|
|
module.onStart();
|
|
expect(module.View.prototype.render).toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|
|
});
|