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