import { ComponentFixture, TestBed } from '@angular/core/testing'; import { SelectDialogComponent } from './select-dialog.component'; describe('SelectDialogComponent', () => { let component: SelectDialogComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ SelectDialogComponent ] }) .compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(SelectDialogComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });