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.
14 lines
374 B
JavaScript
14 lines
374 B
JavaScript
10 years ago
|
define(['core/layout/model'], function (LayoutModel) {
|
||
|
describe('LayoutModel', function () {
|
||
|
it('→ exits', function () {
|
||
|
expect(new LayoutModel()).not.toBeUndefined();
|
||
|
});
|
||
|
|
||
|
describe('→ has defaults', function () {
|
||
|
it('→ title', function () {
|
||
|
expect(typeof (new LayoutModel()).get('title')).toBe('string');
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
});
|