Files
doneit-web/src/app/shared/agenda/new-event/new-event.page.spec.ts
T

25 lines
676 B
TypeScript
Raw Normal View History

2021-06-03 11:44:32 +01:00
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
2020-09-07 12:01:05 +01:00
import { IonicModule } from '@ionic/angular';
2021-06-03 11:44:32 +01:00
import { NewEventPage } from './new-event.page';
2020-09-07 12:01:05 +01:00
2021-02-24 09:14:58 +01:00
describe('NewEventPage', () => {
let component: NewEventPage;
let fixture: ComponentFixture<NewEventPage>;
2020-09-07 12:01:05 +01:00
2021-06-03 11:44:32 +01:00
beforeEach(waitForAsync(() => {
2020-09-07 12:01:05 +01:00
TestBed.configureTestingModule({
2021-02-24 09:14:58 +01:00
declarations: [ NewEventPage ],
2020-09-07 12:01:05 +01:00
imports: [IonicModule.forRoot()]
}).compileComponents();
2021-02-24 09:14:58 +01:00
fixture = TestBed.createComponent(NewEventPage);
2020-09-07 12:01:05 +01:00
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});