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