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