DHBW-RaPla-Vorratsdatenspei.../Frontend/src/app/components/event-detail/event-detail.component.spec.ts
2021-09-30 13:26:06 +02:00

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();
});
});