mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-09 00:20:27 +08:00
51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
describe('weekNumberTitle', function() {
|
|
|
|
var options;
|
|
|
|
beforeEach(function() {
|
|
affix('#cal');
|
|
options = {
|
|
weekNumbers: true
|
|
};
|
|
});
|
|
|
|
function getRenderedWeekNumberTitle() {
|
|
// works for both kinds of views
|
|
var text = $('th.fc-week-number').text();
|
|
return text.replace(/\d/g, '');
|
|
}
|
|
|
|
[ 'basicWeek', 'agendaWeek' ].forEach(function(viewName) {
|
|
describe('when views is ' + viewName, function() {
|
|
|
|
beforeEach(function() {
|
|
options.defaultView = viewName;
|
|
});
|
|
|
|
it('renders correctly by default', function() {
|
|
$('#cal').fullCalendar(options);
|
|
expect(getRenderedWeekNumberTitle()).toBe('W');
|
|
});
|
|
|
|
it('renders correctly when unspecified and when language is customized', function() {
|
|
options.lang = 'es';
|
|
$('#cal').fullCalendar(options);
|
|
expect(getRenderedWeekNumberTitle()).toBe('Sm');
|
|
});
|
|
|
|
it('renders correctly when customized and LTR', function() {
|
|
options.isRTL = false;
|
|
options.weekNumberTitle = 'YO';
|
|
$('#cal').fullCalendar(options);
|
|
expect(getRenderedWeekNumberTitle()).toBe('YO');
|
|
});
|
|
|
|
it('renders correctly when customized and RTL', function() {
|
|
options.isRTL = true;
|
|
options.weekNumberTitle = 'YO';
|
|
$('#cal').fullCalendar(options);
|
|
expect(getRenderedWeekNumberTitle()).toBe('YO');
|
|
});
|
|
});
|
|
});
|
|
}); |