funky-framadate-front/src/app/features/shared/components/rgaa/skip-links/skip-links.component.spec.ts

25 lines
621 B
TypeScript

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