@@ -9,13 +9,15 @@ import {
9
9
Optional ,
10
10
ViewChild
11
11
} from '@angular/core' ;
12
- import { ComponentFixture , TestBed , async , fakeAsync } from '@angular/core/testing' ;
12
+ import { ComponentFixture , TestBed , async } from '@angular/core/testing' ;
13
13
import { By } from '@angular/platform-browser' ;
14
14
import { CdkComboboxModule } from './combobox-module' ;
15
15
import { CdkCombobox } from './combobox' ;
16
16
import { dispatchKeyboardEvent , dispatchMouseEvent } from '@angular/cdk/testing/private' ;
17
- import { AriaHasPopupValue , CdkComboboxPanel } from "@angular/cdk-experimental/combobox/combobox-panel" ;
18
- import { DOWN_ARROW , ESCAPE } from "@angular/cdk/keycodes" ;
17
+ import {
18
+ AriaHasPopupValue ,
19
+ CdkComboboxPanel } from '@angular/cdk-experimental/combobox/combobox-panel' ;
20
+ import { DOWN_ARROW , ESCAPE } from '@angular/cdk/keycodes' ;
19
21
20
22
describe ( 'Combobox' , ( ) => {
21
23
describe ( 'with a basic toggle trigger' , ( ) => {
@@ -185,7 +187,6 @@ describe('Combobox', () => {
185
187
186
188
let combobox : DebugElement ;
187
189
let comboboxInstance : CdkCombobox < unknown > ;
188
- let comboboxElement : HTMLElement ;
189
190
190
191
beforeEach ( async ( ( ) => {
191
192
TestBed . configureTestingModule ( {
@@ -202,7 +203,6 @@ describe('Combobox', () => {
202
203
203
204
combobox = fixture . debugElement . query ( By . directive ( CdkCombobox ) ) ;
204
205
comboboxInstance = combobox . injector . get < CdkCombobox < unknown > > ( CdkCombobox ) ;
205
- comboboxElement = combobox . nativeElement ;
206
206
} ) ;
207
207
208
208
it ( 'should coerce single string into open action' , ( ) => {
@@ -380,7 +380,6 @@ describe('Combobox', () => {
380
380
</button>
381
381
382
382
<div id="other-content"></div>
383
-
384
383
<ng-template cdkComboboxPanel #panel="cdkComboboxPanel">
385
384
<div dialogContent #dialog="dialogContent" [parentPanel]="panel">
386
385
<input #input>
0 commit comments