src/app/shell/form-inputs/form-inputs.component.spec.ts
import { NO_ERRORS_SCHEMA } from '@angular/core';
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormInputsComponent } from './form-inputs.component';
import {expect} from 'chai';
describe('FormInputsComponent', () => {
let component: FormInputsComponent;
let fixture: ComponentFixture<FormInputsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FormInputsComponent ],
schemas: [NO_ERRORS_SCHEMA]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FormInputsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).to.be.ok;
});
});