feat(view-link): add ViewLink component and routing logic

This commit is contained in:
Jan K9f 2025-01-21 10:32:55 +01:00
commit 79fc66ef6b
Signed by: jank
GPG key ID: 50620ADD22CD330B
6 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,23 @@
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();
});
});