Skip to content

Commit 8eecd9a

Browse files
committed
test(filtering): Fixing a filtering test #5304
1 parent 1ac097e commit 8eecd9a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3250,7 +3250,7 @@ describe('IgxGrid - Filtering Row UI actions', () => {
32503250
expect(chipDiv.classList.contains('igx-chip__item--selected')).toBe(true, 'chip is not selected');
32513251
}));
32523252

3253-
it('Verify condition chips are scrolled into/(out of) view by using arrow buttons.', (async () => {
3253+
it('Should not throw error when deleting the last chip', (async () => {
32543254
grid.width = '700px';
32553255
fix.detectChanges();
32563256
await wait(100);
@@ -3296,7 +3296,7 @@ describe('IgxGrid - Filtering Row UI actions', () => {
32963296
await wait(300);
32973297
fix.detectChanges();
32983298

3299-
verifyMultipleChipsVisibility(fix, [false, false, true]);
3299+
verifyMultipleChipsVisibility(fix, [false, true, false]);
33003300
chips = filterUIRow.queryAll(By.directive(IgxChipComponent));
33013301
expect(chips.length).toBe(3);
33023302
} catch (ex) {

0 commit comments

Comments
 (0)