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