add project
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
<p>project-edit.component works!</p>
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { ProjectEditComponent } from './project-edit.component';
|
||||
|
||||
describe('ProjectEditComponent', () => {
|
||||
let component: ProjectEditComponent;
|
||||
let fixture: ComponentFixture<ProjectEditComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [ProjectEditComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ProjectEditComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-project-edit.component',
|
||||
imports: [],
|
||||
templateUrl: './project-edit.component.html',
|
||||
styleUrl: './project-edit.component.scss',
|
||||
})
|
||||
export class ProjectEditComponent {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user