pdnsmanager/frontend/src/app/pages/record-edit/record-edit.component.spec.ts
2018-02-09 16:58:04 +01:00

26 lines
661 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RecordEditComponent } from './record-edit.component';
describe('RecordEditComponent', () => {
let component: RecordEditComponent;
let fixture: ComponentFixture<RecordEditComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RecordEditComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RecordEditComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});