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