Skip to content

Commit e55970b

Browse files
committed
fix: TT-593 test 1
1 parent 7e0fce1 commit e55970b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/modules/reports/components/time-entries-table/time-entries-table.component.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ describe('Reports Page', () => {
190190

191191
it('Should populate the users with the payload from the action executed', () => {
192192
const actionSubject = TestBed.inject(ActionsSubject) as ActionsSubject;
193-
const usersArray = []
193+
const usersArray = [];
194194
const action = {
195195
type: UserActionTypes.LOAD_USERS_SUCCESS,
196196
payload: usersArray
@@ -201,7 +201,7 @@ describe('Reports Page', () => {
201201

202202
expect(component.users).toEqual(usersArray);
203203
});
204-
204+
205205
it('The sum of the data dates is equal to {"hours": 3, "minutes":20,"seconds":0}', () => {
206206
let {hours,minutes,seconds}: TotalHours = component.sumDates(timeEntryList);
207207
expect({hours, minutes, seconds}).toEqual({hours:3,minutes:20,seconds:0});

0 commit comments

Comments
 (0)