funky-framadate-front/src/app/features/administration/form/option-link/option-link.component.spec.ts

25 lines
628 B
TypeScript

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