File tree 1 file changed +6
-3
lines changed
src/material/autocomplete 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2617,7 +2617,8 @@ describe('MatAutocomplete', () => {
2617
2617
tick ( ) ;
2618
2618
2619
2619
Promise . resolve ( ) . then ( ( ) => {
2620
- const panel = overlayContainerElement . querySelector ( '.mat-autocomplete-panel' ) as HTMLElement ;
2620
+ const panel =
2621
+ overlayContainerElement . querySelector ( '.mat-autocomplete-panel' ) as HTMLElement ;
2621
2622
const visibleClass = 'mat-autocomplete-visible' ;
2622
2623
2623
2624
fixture . detectChanges ( ) ;
@@ -2633,7 +2634,8 @@ describe('MatAutocomplete', () => {
2633
2634
zone . simulateZoneExit ( ) ;
2634
2635
fixture . detectChanges ( ) ;
2635
2636
2636
- const options = overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
2637
+ const options =
2638
+ overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
2637
2639
const spy = fixture . componentInstance . optionSelected ;
2638
2640
2639
2641
options [ 1 ] . click ( ) ;
@@ -2661,7 +2663,8 @@ describe('MatAutocomplete', () => {
2661
2663
tick ( ) ;
2662
2664
fixture . detectChanges ( ) ;
2663
2665
2664
- const options = overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
2666
+ const options =
2667
+ overlayContainerElement . querySelectorAll ( 'mat-option' ) as NodeListOf < HTMLElement > ;
2665
2668
const spy = fixture . componentInstance . optionSelected ;
2666
2669
2667
2670
options [ 3 ] . click ( ) ;
You can’t perform that action at this time.
0 commit comments