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