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