Files
doneit-web/src/app/shared/agenda/new-event/new-event.page.spec.ts
T
Peter Maquiran 646172eb93 Recreate modal
2021-06-03 11:44:32 +01:00

25 lines
676 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { NewEventPage } from './new-event.page';
describe('NewEventPage', () => {
let component: NewEventPage;
let fixture: ComponentFixture<NewEventPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ NewEventPage ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(NewEventPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});