dvbooking/admin/src/app/features/calendar/components/calendar-view/single-event-dashboard-card/single-event-dashboard-card.spec.ts
2025-11-27 19:57:58 +01:00

24 lines
657 B
TypeScript

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