import { ComponentFixture, TestBed } from '@angular/core/testing'; import { InputFieldComponent } from './input-field.component'; describe('InputFieldComponent', () => { let component: InputFieldComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [InputFieldComponent] }) .compileComponents(); fixture = TestBed.createComponent(InputFieldComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });