funky-framadate-front/src/app/features/administration/form/classic-choices/classic-choices.component.s...

25 lines
656 B
TypeScript

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