Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: TT-125 remove spaces
  • Loading branch information
israteneda committed Jan 27, 2021
commit d401dd888ec676f85d6306adad76e811052b41fd
Original file line number Diff line number Diff line change
Expand Up @@ -417,19 +417,14 @@ describe('TimeEntriesComponent', () => {
Array.from(HTMLTableHead.cells).forEach(columnTitle => {
columnTitles.push(columnTitle.innerText);
});

expect(expectedColumnTitles).toEqual(columnTitles);

});
}));

it('when the data source is loaded, the entry should to have customer_name field', waitForAsync(() => {
component.timeEntriesDataSource$.subscribe(dataSource => {
const entryData = dataSource.data[0];

expect(entryData.customer_name).toContain('ioet Inc.');

});
}));

});