22 lines
645 B
TypeScript
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();
|
|
});
|
|
});
|