Files
semester-essen/frontend/src/app/views/event-create/event-create.component.spec.ts

24 lines
623 B
TypeScript

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