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