Files
doneit-web/src/app/services/file/custom-image-cache/custom-image-cache.page.spec.ts
T
2021-11-29 15:48:35 +01:00

25 lines
733 B
TypeScript

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