viewRender.js
944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
describe('viewRender', function() {
var options;
beforeEach(function() {
options = {
defaultDate: '2015-02-20'
};
affix('#cal');
});
describe('when in month view', function() {
beforeEach(function() {
options = {
defaultView: 'month'
};
});
defineTests();
});
describe('when in agendaWeek view', function() {
beforeEach(function() {
options = {
defaultView: 'agendaWeek'
};
});
defineTests();
});
function defineTests() {
it('fires after the view is rendered, with correct arguments', function(done) {
options.viewRender = function(givenViewObj, givenViewEl) {
var viewObj = $('#cal').fullCalendar('getView');
var viewEl = $('#cal .fc-view');
expect(viewObj).toBe(givenViewObj);
expect(viewEl[0]).toBe(givenViewEl[0]);
expect(viewEl.children().length >= 1).toBe(true); // has it rendered content?
done();
};
$('#cal').fullCalendar(options);
});
}
});