funky-framadate-front/src/app/core/services/storage.service.spec.ts

17 lines
351 B
TypeScript
Raw Normal View History

import { TestBed } from '@angular/core/testing';
2020-04-22 12:56:18 +02:00
import { StorageService } from './storage.service';
2020-04-22 12:56:18 +02:00
describe('StorageService', () => {
let service: StorageService;
beforeEach(() => {
TestBed.configureTestingModule({});
2020-04-22 12:56:18 +02:00
service = TestBed.inject(StorageService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});