@@ -219,7 +219,7 @@ describe('IgxChip', () => {
219
219
fix . detectChanges ( ) ;
220
220
} ) ;
221
221
222
- it ( 'should not trigger onRemove event when a chip is focused and delete button is pressed when not removable' , ( ) => {
222
+ it ( 'should not trigger onRemove event when delete button is pressed when not removable' , ( ) => {
223
223
const firstChipComp = fix . componentInstance . chips . toArray ( ) [ 0 ] ;
224
224
225
225
spyOn ( firstChipComp . onRemove , 'emit' ) ;
@@ -229,7 +229,7 @@ describe('IgxChip', () => {
229
229
expect ( firstChipComp . onRemove . emit ) . not . toHaveBeenCalled ( ) ;
230
230
} ) ;
231
231
232
- it ( 'should trigger onRemove event when a chip is focused and delete button is pressed when removable' , ( ) => {
232
+ it ( 'should trigger onRemove event when delete button is pressed when removable' , ( ) => {
233
233
const secondChipComp = fix . componentInstance . chips . toArray ( ) [ 1 ] ;
234
234
235
235
spyOn ( secondChipComp . onRemove , 'emit' ) ;
@@ -239,7 +239,7 @@ describe('IgxChip', () => {
239
239
expect ( secondChipComp . onRemove . emit ) . toHaveBeenCalled ( ) ;
240
240
} ) ;
241
241
242
- it ( 'should delete chip when space button is pressed after chip delete button is focused ' , ( ) => {
242
+ it ( 'should delete chip when space button is pressed on delete button' , ( ) => {
243
243
HelperTestFunctions . verifyChipsCount ( fix , 4 ) ;
244
244
245
245
const deleteButtonElement = HelperTestFunctions . getDeleteButton ( fix ) ;
@@ -254,7 +254,7 @@ describe('IgxChip', () => {
254
254
expect ( chipComponentsIds ) . not . toContain ( 'City' ) ;
255
255
} ) ;
256
256
257
- it ( 'should delete chip when enter button is pressed after chip delete button is focused ' , ( ) => {
257
+ it ( 'should delete chip when enter button is pressed on delete button' , ( ) => {
258
258
HelperTestFunctions . verifyChipsCount ( fix , 4 ) ;
259
259
260
260
const deleteButtonElement = HelperTestFunctions . getDeleteButton ( fix ) ;
0 commit comments