Files
doneit-web/src/app/modals/eliminate-event/eliminate-event.page.spec.ts
T
Peter Maquiran a3b753dad9 Hot fix
2021-07-20 19:22:11 +01:00

25 lines
718 B
TypeScript

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