UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

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