Files
doneit-web/src/app/pages/publications/gallery/gallery.page.spec.ts
T
2020-12-01 14:03:15 +01:00

25 lines
654 B
TypeScript

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