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