Skip to content

Commit d72d03e

Browse files
committed
fix(tests): Fix failing tests
1 parent 3a6f55a commit d72d03e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-filtering-ui.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5098,6 +5098,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
50985098
it('Should display the default True and False resource strings in the search list for boolean column.', fakeAsync(() => {
50995099
GridFunctions.clickExcelFilterIconFromCode(fix, grid, 'Released');
51005100
flush();
5101+
fix.detectChanges();
51015102

51025103
const searchComponent = GridFunctions.getExcelStyleSearchComponent(fix);
51035104
const listItems = GridFunctions.getExcelStyleSearchComponentListItems(fix, searchComponent);
@@ -5113,6 +5114,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
51135114

51145115
GridFunctions.clickApplyExcelStyleFiltering(fix);
51155116
flush();
5117+
fix.detectChanges();
51165118

51175119
expect(grid.filteredData.length).toEqual(5);
51185120
}));
@@ -5124,6 +5126,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
51245126

51255127
GridFunctions.clickExcelFilterIconFromCode(fix, grid, 'Released');
51265128
flush();
5129+
fix.detectChanges();
51275130

51285131
const searchComponent = GridFunctions.getExcelStyleSearchComponent(fix);
51295132
const listItems = GridFunctions.getExcelStyleSearchComponentListItems(fix, searchComponent);

0 commit comments

Comments
 (0)