UNPKG

techhive-fires

Version:
26 lines (20 loc) 621 B
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { HelloComponent } from './hello.component'; describe('HelloComponent', () => { let component: HelloComponent; let fixture: ComponentFixture<HelloComponent>; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ HelloComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(HelloComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });