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