funky-framadate-front/src/app/pages/voting/voting-choice/voting-choice.component.spe...

26 lines
671 B
TypeScript

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