24 lines
628 B
TypeScript
24 lines
628 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { SelectIconComponent } from './select-icon.component';
|
|
|
|
describe('SelectIconComponent', () => {
|
|
let component: SelectIconComponent;
|
|
let fixture: ComponentFixture<SelectIconComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [ SelectIconComponent ]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(SelectIconComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|