argos/dmp-frontend/src/app/form/dynamic-form-group/dynamic-form-group.componen...

26 lines
704 B
TypeScript

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