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

This commit is contained in:
Vicent Llopis 2023-03-06 12:47:49 +01:00
parent 9e9807c4b5
commit a98bb59479
2 changed files with 6 additions and 1 deletions

View File

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

View File

@ -96,8 +96,8 @@ describe('Component vnWorkerTimeControl', () => {
ended.setDate(ended.getDate() + 6);
controller.ended = ended;
$httpBackend.expect('GET', `WorkerTimeControlMails`).respond({data: {state: 'SENDED'}});
controller.getWorkedHours(controller.started, controller.ended);
$httpBackend.flush();
expect(controller.weekDays.length).toEqual(7);