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