mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
bfa4f2ec91
Add approve page and criate its layout; Finish functionality for list approve 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 { EventListPage } from './event-list.page';
|
|
|
|
describe('EventListPage', () => {
|
|
let component: EventListPage;
|
|
let fixture: ComponentFixture<EventListPage>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ EventListPage ],
|
|
imports: [IonicModule.forRoot()]
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(EventListPage);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
}));
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|