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