@@ -20,7 +20,7 @@ describe('IgxGrid - Row Adding #grid', () => {
2020 let gridContent : DebugElement ;
2121 let actionStrip : IgxActionStripComponent ;
2222 configureTestSuite ( ) ;
23- beforeAll ( async ( ( ) => {
23+ beforeAll ( async ( ( ) => {
2424 TestBed . configureTestingModule ( {
2525 declarations : [
2626 IgxAddRowComponent
@@ -122,7 +122,7 @@ describe('IgxGrid - Row Adding #grid', () => {
122122 row . beginAddRow ( ) ;
123123 fixture . detectChanges ( ) ;
124124
125- //add row should be pinned
125+ // add row should be pinned
126126 const addRow = grid . getRowByIndex ( 1 ) as IgxGridRowComponent ;
127127 expect ( addRow . addRow ) . toBe ( true ) ;
128128 expect ( grid . pinnedRows [ 1 ] ) . toBe ( addRow ) ;
@@ -136,7 +136,7 @@ describe('IgxGrid - Row Adding #grid', () => {
136136
137137 } ) ;
138138 it ( 'Should allow adding row from ghost row.' , ( ) => {
139- let row = grid . getRowByIndex ( 0 ) ;
139+ const row = grid . getRowByIndex ( 0 ) ;
140140 row . pin ( ) ;
141141 fixture . detectChanges ( ) ;
142142 expect ( grid . pinnedRecords . length ) . toBe ( 1 ) ;
@@ -145,7 +145,7 @@ describe('IgxGrid - Row Adding #grid', () => {
145145 ghostRow . beginAddRow ( ) ;
146146 fixture . detectChanges ( ) ;
147147
148- //add row should be unpinned
148+ // add row should be unpinned
149149 const addRow = grid . getRowByIndex ( 2 ) ;
150150 expect ( addRow . addRow ) . toBe ( true ) ;
151151 expect ( grid . pinnedRows . length ) . toBe ( 1 ) ;
0 commit comments