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