@@ -318,7 +318,7 @@ describe('PDF Grid Exporter', () => {
318318 exporter . export ( grid , options ) ;
319319 } ) ;
320320
321- it ( 'should export tree grid with hierarchical data' , ( done ) => {
321+ fit ( 'should export tree grid with hierarchical data' , ( done ) => {
322322 TestBed . configureTestingModule ( {
323323 imports : [
324324 NoopAnimationsModule ,
@@ -330,8 +330,6 @@ describe('PDF Grid Exporter', () => {
330330 fix . detectChanges ( ) ;
331331
332332 const grid = fix . componentInstance . treeGrid ;
333- grid . expandAll ( ) ;
334- fix . detectChanges ( ) ;
335333
336334 exporter . exportEnded . pipe ( first ( ) ) . subscribe ( ( ) => {
337335 expect ( ExportUtilities . saveBlobToFile ) . toHaveBeenCalledTimes ( 1 ) ;
@@ -341,7 +339,7 @@ describe('PDF Grid Exporter', () => {
341339 exporter . export ( grid , options ) ;
342340 } ) ;
343341
344- it ( 'should export tree grid with flat self-referencing data' , ( done ) => {
342+ fit ( 'should export tree grid with flat self-referencing data' , ( done ) => {
345343 TestBed . configureTestingModule ( {
346344 imports : [
347345 NoopAnimationsModule ,
@@ -353,8 +351,6 @@ describe('PDF Grid Exporter', () => {
353351 fix . detectChanges ( ) ;
354352
355353 const grid = fix . componentInstance . treeGrid ;
356- grid . expandAll ( ) ;
357- fix . detectChanges ( ) ;
358354
359355 exporter . exportEnded . pipe ( first ( ) ) . subscribe ( ( ) => {
360356 expect ( ExportUtilities . saveBlobToFile ) . toHaveBeenCalledTimes ( 1 ) ;
0 commit comments