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