fix: frontTest
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Vicent Llopis 2023-03-08 12:22:14 +01:00
parent 79023fbfaf
commit 07edacd557
1 changed files with 4 additions and 4 deletions

View File

@ -24,13 +24,13 @@ describe('Component vnCalendar', () => {
let nextMonth = new Date(date.getTime());
nextMonth.setMonth(nextMonth.getMonth() + 1);
controller.getStates = jasmine.createSpy(controller, 'getStates');
controller.getMailStates = jasmine.createSpy(controller, 'getMailStates');
controller.moveNext();
expect(controller.month).toEqual(nextMonth.getMonth());
expect(controller.emit).toHaveBeenCalledWith('move', {$date: nextMonth});
expect(controller.getStates).toHaveBeenCalledWith({$day: nextMonth});
expect(controller.getMailStates).toHaveBeenCalledWith({$day: nextMonth});
});
});
@ -40,13 +40,13 @@ describe('Component vnCalendar', () => {
let previousMonth = new Date(date.getTime());
previousMonth.setMonth(previousMonth.getMonth() - 1);
controller.getStates = jasmine.createSpy(controller, 'getStates');
controller.getMailStates = jasmine.createSpy(controller, 'getMailStates');
controller.movePrevious();
expect(controller.month).toEqual(previousMonth.getMonth());
expect(controller.emit).toHaveBeenCalledWith('move', {$date: previousMonth});
expect(controller.getStates).toHaveBeenCalledWith({$day: previousMonth});
expect(controller.getMailStates).toHaveBeenCalledWith({$day: previousMonth});
});
});