funky-framadate-front/src/app/shared/components/choice-details/choice-details.component.sp...

25 lines
649 B
TypeScript

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