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