|
@ -0,0 +1,23 @@ |
|
|
|
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing'; |
|
|
|
|
|
|
|
|
|
|
|
import { FormContainerComponent } from './form-container.component'; |
|
|
|
|
|
|
|
|
|
|
|
describe('FormContainerComponent', () => { |
|
|
|
|
|
let component: FormContainerComponent; |
|
|
|
|
|
let fixture: ComponentFixture<FormContainerComponent>; |
|
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => { |
|
|
|
|
|
await TestBed.configureTestingModule({ |
|
|
|
|
|
declarations: [ FormContainerComponent ] |
|
|
|
|
|
}) |
|
|
|
|
|
.compileComponents(); |
|
|
|
|
|
|
|
|
|
|
|
fixture = TestBed.createComponent(FormContainerComponent); |
|
|
|
|
|
component = fixture.componentInstance; |
|
|
|
|
|
fixture.detectChanges(); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
it('should create', () => { |
|
|
|
|
|
expect(component).toBeTruthy(); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |