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