File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -61,8 +61,9 @@ describe('MatExpansionPanel', () => {
61
61
62
62
it ( 'should be able to render panel content lazily' , fakeAsync ( ( ) => {
63
63
const fixture = TestBed . createComponent ( LazyPanelWithContent ) ;
64
- const content = fixture . debugElement . query ( By . css ( '.mat-expansion-panel-content' ) ) !
65
- . nativeElement ;
64
+ const content = fixture . debugElement . query (
65
+ By . css ( '.mat-expansion-panel-content' ) ,
66
+ ) ! . nativeElement ;
66
67
fixture . detectChanges ( ) ;
67
68
68
69
expect ( content . textContent . trim ( ) )
@@ -79,8 +80,9 @@ describe('MatExpansionPanel', () => {
79
80
80
81
it ( 'should render the content for a lazy-loaded panel that is opened on init' , fakeAsync ( ( ) => {
81
82
const fixture = TestBed . createComponent ( LazyPanelOpenOnLoad ) ;
82
- const content = fixture . debugElement . query ( By . css ( '.mat-expansion-panel-content' ) ) !
83
- . nativeElement ;
83
+ const content = fixture . debugElement . query (
84
+ By . css ( '.mat-expansion-panel-content' ) ,
85
+ ) ! . nativeElement ;
84
86
fixture . detectChanges ( ) ;
85
87
86
88
expect ( content . textContent . trim ( ) )
You can’t perform that action at this time.
0 commit comments