@@ -708,47 +708,4 @@ export class CsvExportComponent {
708708 )
709709 ) . toEqual ( expectedContent ) ;
710710 } ) ;
711-
712- it ( 'should update GridPagingMode enum from lowerCase to TitleCase' , async ( ) => {
713- appTree . create (
714- '/testSrc/appPrefix/component/paging-test.component.ts' ,
715- `import { Component } from '@angular/core';
716- import { GridPagingMode } from "igniteui-angular";
717-
718- @Component({
719- selector: "app-paging-test",
720- styleUrls: ["./paging-test.component.scss"],
721- templateUrl: "./paging-test.component.html"
722- })
723- export class PagingComponent {
724- public pagingLocal: GridPagingMode = GridPagingMode.local;
725- public pagingRemote: GridPagingMode = GridPagingMode.remote;
726- constructor(){}
727- }
728- ` ) ;
729-
730- const tree = await runner
731- . runSchematic ( 'migration-19' , { } , appTree ) ;
732-
733- const expectedContent =
734- `import { Component } from '@angular/core';
735- import { GridPagingMode } from "igniteui-angular";
736-
737- @Component({
738- selector: "app-paging-test",
739- styleUrls: ["./paging-test.component.scss"],
740- templateUrl: "./paging-test.component.html"
741- })
742- export class PagingComponent {
743- public pagingLocal: GridPagingMode = GridPagingMode.Local;
744- public pagingRemote: GridPagingMode = GridPagingMode.Remote;
745- constructor(){}
746- }
747- ` ;
748- expect (
749- tree . readContent (
750- '/testSrc/appPrefix/component/paging-test.component.ts'
751- )
752- ) . toEqual ( expectedContent ) ;
753- } ) ;
754711} ) ;
0 commit comments