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