feat(create-link): add create link component and routing
This commit is contained in:
parent
9bc5ed62ff
commit
00a7688ef9
8 changed files with 125 additions and 1 deletions
23
src/app/create-link/create-link.component.spec.ts
Normal file
23
src/app/create-link/create-link.component.spec.ts
Normal 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();
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue