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