26 lines
710 B
TypeScript
26 lines
710 B
TypeScript
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();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(EventDetailComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|