nextDayThreshold.js
1.57 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
describe('nextDayThreshold', function() {
// when a view object exposes its nextDayThreshold value (after some refactoring)...
// TODO: detect the default of 9am
// TODO: detect 2 or more different types of Duration-ish parsing
beforeEach(function() {
affix('#cal');
});
it('renders an event before the threshold', function() {
$('#cal').fullCalendar({
nextDayThreshold: '10:00:00',
defaultDate: '2014-06',
defaultView: 'month',
events: [
{
title: 'event1',
start: '2014-06-08T22:00:00',
end: '2014-06-10T09:00:00'
}
]
});
expect(renderedDayCount()).toBe(2);
});
it('renders an event equal to the threshold', function() {
$('#cal').fullCalendar({
nextDayThreshold: '10:00:00',
defaultDate: '2014-06',
defaultView: 'month',
events: [
{
title: 'event1',
start: '2014-06-08T22:00:00',
end: '2014-06-10T10:00:00'
}
]
});
expect(renderedDayCount()).toBe(3);
});
it('renders an event after the threshold', function() {
$('#cal').fullCalendar({
nextDayThreshold: '10:00:00',
defaultDate: '2014-06',
defaultView: 'month',
events: [
{
title: 'event1',
start: '2014-06-08T22:00:00',
end: '2014-06-10T11:00:00'
}
]
});
expect(renderedDayCount()).toBe(3);
});
function renderedDayCount() { // assumes only one event on the calendar
var cellWidth = $('.fc-sun').outerWidth(); // works with basic and agenda
var totalWidth = 0;
$('.fc-event').each(function() {
totalWidth += $(this).outerWidth();
});
return Math.round(totalWidth / cellWidth);
}
});