Skip to content

Commit 30aa3fb

Browse files
committed
style(material/autocomplete): fix tslint max-size exceeded issue in ci build
1 parent f2cf57d commit 30aa3fb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/material/autocomplete/autocomplete.spec.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2617,7 +2617,8 @@ describe('MatAutocomplete', () => {
26172617
tick();
26182618

26192619
Promise.resolve().then(() => {
2620-
const panel = overlayContainerElement.querySelector('.mat-autocomplete-panel') as HTMLElement;
2620+
const panel =
2621+
overlayContainerElement.querySelector('.mat-autocomplete-panel') as HTMLElement;
26212622
const visibleClass = 'mat-autocomplete-visible';
26222623

26232624
fixture.detectChanges();
@@ -2633,7 +2634,8 @@ describe('MatAutocomplete', () => {
26332634
zone.simulateZoneExit();
26342635
fixture.detectChanges();
26352636

2636-
const options = overlayContainerElement.querySelectorAll('mat-option') as NodeListOf<HTMLElement>;
2637+
const options =
2638+
overlayContainerElement.querySelectorAll('mat-option') as NodeListOf<HTMLElement>;
26372639
const spy = fixture.componentInstance.optionSelected;
26382640

26392641
options[1].click();
@@ -2661,7 +2663,8 @@ describe('MatAutocomplete', () => {
26612663
tick();
26622664
fixture.detectChanges();
26632665

2664-
const options = overlayContainerElement.querySelectorAll('mat-option') as NodeListOf<HTMLElement>;
2666+
const options =
2667+
overlayContainerElement.querySelectorAll('mat-option') as NodeListOf<HTMLElement>;
26652668
const spy = fixture.componentInstance.optionSelected;
26662669

26672670
options[3].click();

0 commit comments

Comments
 (0)