| 1234567891011121314151617181920212223242526272829303132333435 |
- describe('recurring events', function() {
- describe('when timed events in local timezone', function() {
- pushOptions({
- defaultView: 'agendaWeek',
- defaultDate: '2017-07-03',
- timezone: 'local',
- events: [
- { start: '09:00', end: '11:00', dow: [ 2, 4 ] }
- ]
- })
- it('expands events with local time', function() {
- initCalendar()
- var events = currentCalendar.clientEvents()
- expect(events[0].start.format()).toBe(
- moment('2017-07-04T09:00:00').format() // local
- )
- expect(events[0].end.format()).toBe(
- moment('2017-07-04T11:00:00').format() // local
- )
- expect(events[1].start.format()).toBe(
- moment('2017-07-06T09:00:00').format() // local
- )
- expect(events[1].end.format()).toBe(
- moment('2017-07-06T11:00:00').format() // local
- )
- })
- })
- })
|