funky-framadate-front/src/app/shared/components/choice-item/choice-button.component.spec.ts

25 lines
640 B
TypeScript
Raw Normal View History

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