forked from tykayn/funky-framadate-front
26 lines
671 B
TypeScript
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();
|
||
|
});
|
||
|
});
|