Skip to content

Commit e3f3fac

Browse files
committed
fix(tests): Fix failing tests
1 parent 90449fa commit e3f3fac

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
@@ -5208,6 +5208,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
52085208
it('Should display the default True and False resource strings in the search list for boolean column.', fakeAsync(() => {
52095209
GridFunctions.clickExcelFilterIconFromCode(fix, grid, 'Released');
52105210
flush();
5211+
fix.detectChanges();
52115212

52125213
const searchComponent = GridFunctions.getExcelStyleSearchComponent(fix);
52135214
const listItems = GridFunctions.getExcelStyleSearchComponentListItems(fix, searchComponent);
@@ -5223,6 +5224,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
52235224

52245225
GridFunctions.clickApplyExcelStyleFiltering(fix);
52255226
flush();
5227+
fix.detectChanges();
52265228

52275229
expect(grid.filteredData.length).toEqual(5);
52285230
}));
@@ -5234,6 +5236,7 @@ describe('IgxGrid - Filtering actions - Excel style filtering #grid', () => {
52345236

52355237
GridFunctions.clickExcelFilterIconFromCode(fix, grid, 'Released');
52365238
flush();
5239+
fix.detectChanges();
52375240

52385241
const searchComponent = GridFunctions.getExcelStyleSearchComponent(fix);
52395242
const listItems = GridFunctions.getExcelStyleSearchComponentListItems(fix, searchComponent);

0 commit comments

Comments
 (0)