Files
doneit-web/src/app/pages/agenda/agenda.page.spec.ts
T
2020-08-05 15:39:16 +01:00

25 lines
647 B
TypeScript

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