import { directionallyTestSeg } from '../lib/DayGridEventRenderUtils.js' import { TimeGridViewWrapper } from '../lib/wrappers/TimeGridViewWrapper.js' describe('event rendering with slotMaxTime', () => { // TODO: rename file pushOptions({ initialView: 'timeGridWeek', initialDate: '2017-03-22', scrollTime: '00:00', }) describe('when event is within extended slotMaxTime', () => { pushOptions({ slotMaxTime: '26:00', events: [ { start: '2017-03-22T00:00:00', end: '2017-03-22T02:00:00' }, ], }) it('renders two event elements in the correct places', () => { let calendar = initCalendar() let timeGridWrapper = new TimeGridViewWrapper(calendar).timeGrid let res = timeGridWrapper.checkEventRendering( '2017-03-22T00:00:00Z', '2017-03-22T02:00:00Z', ) expect(res.length).toBe(2) expect(res.isMatch).toBe(true) }) }) // https://github.com/fullcalendar/fullcalendar/issues/4483 it('displays events on the last day', () => { initCalendar({ initialView: 'dayGridWeek', slotMaxTime: '20:00', events: [ { start: '2017-03-19', end: '2017-03-26' }, ], }) directionallyTestSeg({ firstCol: 0, lastCol: 6, isStart: true, isEnd: true, }) }) })