workspace-ionic-app/src/app/storagehub.service.spec.ts

17 lines
377 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { StoragehubService } from './storagehub.service';
describe('StoragehubService', () => {
let service: StoragehubService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(StoragehubService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});