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