refs #4856 fix: backTest
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Vicent Llopis 2023-03-14 07:45:22 +01:00
parent c5eef959ee
commit 2be7320d89
1 changed files with 0 additions and 6 deletions

View File

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