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
Next Next commit
fix: TT-125 change tests description
  • Loading branch information
israteneda committed Jan 27, 2021
commit c5b23194a1e9d9276f83a7e8576af7e5b72ee476
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ describe('TimeEntriesComponent', () => {
expect(component.entry).toEqual(lastEntry);
}));

it('when the data source is loaded, the entry should to have customer_name field', waitForAsync(() => {
it('when the data source is loaded, the table should to show the appropriated column titles', waitForAsync(() => {
component.timeEntriesDataSource$.subscribe(() => {

fixture.detectChanges();
Expand Down Expand Up @@ -423,7 +423,7 @@ describe('TimeEntriesComponent', () => {
});
}));

it('on success times entries data source charged, the entry should to have customer_name field', waitForAsync(() => {
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];

Expand Down