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