@@ -14,7 +14,7 @@ import { GridFunctions } from '../../test-utils/grid-functions.spec';
14
14
import { ControlsFunction } from '../../test-utils/controls-functions.spec' ;
15
15
import { DebugElement } from '@angular/core' ;
16
16
17
- fdescribe ( 'IgxGrid - Grid Paging #grid' , ( ) => {
17
+ describe ( 'IgxGrid - Grid Paging #grid' , ( ) => {
18
18
configureTestSuite ( ) ;
19
19
20
20
beforeAll ( async ( ( ) => {
@@ -47,7 +47,6 @@ fdescribe('IgxGrid - Grid Paging #grid', () => {
47
47
it ( 'should paginate data UI' , ( ) => {
48
48
49
49
expect ( grid . paging ) . toBeTruthy ( ) ;
50
-
51
50
GridFunctions . verifyGridPager ( fix , 3 , '1' , '1\xA0of\xA04' , [ true , true , false , false ] ) ;
52
51
53
52
// Go to next page
@@ -73,8 +72,7 @@ fdescribe('IgxGrid - Grid Paging #grid', () => {
73
72
74
73
it ( 'should paginate data API' , ( ) => {
75
74
76
- // Goto page 3 through API and listen for event
77
-
75
+ // Goto page 3 through API and listen for event
78
76
spyOn ( grid . onPagingDone , 'emit' ) ;
79
77
grid . paginate ( 2 ) ;
80
78
@@ -259,9 +257,7 @@ fdescribe('IgxGrid - Grid Paging #grid', () => {
259
257
260
258
it ( 'should work correct with filtering' , ( ) => {
261
259
262
-
263
260
grid . getColumnByName ( 'ID' ) . filterable = true ;
264
-
265
261
fix . detectChanges ( ) ;
266
262
267
263
// Filter column
@@ -282,7 +278,6 @@ fdescribe('IgxGrid - Grid Paging #grid', () => {
282
278
283
279
it ( 'should work correct with crud operations' , ( ) => {
284
280
285
-
286
281
grid . primaryKey = 'ID' ;
287
282
fix . detectChanges ( ) ;
288
283
0 commit comments