Files
doneit-web/src/app/services/storage.service.spec.ts
T

17 lines
362 B
TypeScript
Raw Normal View History

2020-08-05 15:39:16 +01:00
import { TestBed } from '@angular/core/testing';
import { StorageService } from './storage.service';
describe('StorageService', () => {
let service: StorageService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(StorageService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});