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