import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { HomeComponent } from './home.component'; describe('[Static] Component: HomeComponent', () => { let component: HomeComponent; let fixture: ComponentFixture<HomeComponent>; beforeEach(() => { TestBed.configureTestingModule({ declarations: [HomeComponent] }); fixture = TestBed.createComponent(HomeComponent); component = fixture.componentInstance; }); it('should create the component', () => { expect(component).toBeTruthy(); }); });