IOP-Patho/vendor/bower-asset/fullcalendar-scheduler/tests/automated/misc/view-classes-exposed.js

14 lines
405 B
JavaScript
Raw Normal View History

2025-07-17 08:28:28 +00:00
describe('internal View classes', function() {
it('are exposed', function() {
const FC = $.fullCalendar
expect(typeof FC.TimelineView).toBe('function')
expect(typeof FC.ResourceTimelineView).toBe('function')
expect(typeof FC.ResourceAgendaView).toBe('function')
expect(typeof FC.ResourceBasicView).toBe('function')
expect(typeof FC.ResourceMonthView).toBe('function')
})
})