Files
doneit-web/src/app/store/localstore.service.spec.ts
T
2021-07-18 18:56:53 +01:00

17 lines
377 B
TypeScript

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