24 lines
623 B
TypeScript
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();
|
|
});
|
|
});
|