1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
3 import { FormFieldsComponent } from './form-fields.component';
5 describe('FormFieldsComponent', () => {
6 let component: FormFieldsComponent;
7 let fixture: ComponentFixture<FormFieldsComponent>;
9 beforeEach(async(() => {
10 TestBed.configureTestingModule({
11 declarations: [ FormFieldsComponent ]
17 fixture = TestBed.createComponent(FormFieldsComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
22 it('should create', () => {
23 expect(component).toBeTruthy();
26 it('should test ngOnInit function', () => {
30 it('should test isLast functions', () =>{
31 component.formFieldsListObj.length = 4;
32 expect(component.isLast(3)).toEqual(true);