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