feat(create-link): add create link component and routing

This commit is contained in:
Jan K9f 2025-01-20 15:11:46 +01:00
parent 9bc5ed62ff
commit 00a7688ef9
Signed by: jank
GPG key ID: 50620ADD22CD330B
8 changed files with 125 additions and 1 deletions

View file

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