mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
076b614488
- add view-event page - add edit-event page
25 lines
669 B
TypeScript
25 lines
669 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { EditEventPage } from './edit-event.page';
|
|
|
|
describe('EditEventPage', () => {
|
|
let component: EditEventPage;
|
|
let fixture: ComponentFixture<EditEventPage>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ EditEventPage ],
|
|
imports: [IonicModule.forRoot()]
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(EditEventPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|