| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import * as DayGridEventDragUtils from './DayGridEventDragUtils'
- describe('validRange event dragging', function() {
- describe('when start constraint', function() {
- describe('when in month view', function() {
- pushOptions({
- defaultView: 'month',
- defaultDate: '2017-06-01',
- validRange: { start: '2017-06-06' },
- events: [
- { start: '2017-06-07', end: '2017-06-10' }
- ],
- editable: true
- })
- pit('won\'t go before validRange', function() {
- initCalendar()
- return DayGridEventDragUtils.drag('2017-06-08', '2017-06-06')
- .then(function(res) {
- expect(res.isSuccess).toBe(false)
- })
- })
- })
- })
- describe('when end constraint', function() {
- describe('when in month view', function() {
- pushOptions({
- defaultView: 'month',
- defaultDate: '2017-06-01',
- validRange: { end: '2017-06-09' },
- events: [
- { start: '2017-06-04', end: '2017-06-07' }
- ],
- editable: true
- })
- pit('won\'t go after validRange', function() {
- initCalendar()
- return DayGridEventDragUtils.drag('2017-06-05', '2017-06-08')
- .then(function(res) {
- expect(res.isSuccess).toBe(false)
- })
- })
- })
- })
- })
|