timemanager/frontend/src/app/navigation-link-list/navigation-link-list.component.spec.ts
2023-10-22 11:39:25 +02:00

22 lines
645 B
TypeScript

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