funky-framadate-front/src/app/ui/navigation/two-links/two-links.component.spec.ts

25 lines
683 B
TypeScript

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