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