An error occurred while loading the file. Please try again.
-
David Noah Donges authored
Added service handling local data. Use this service so we can change the used technology (cookie, local storage, ..) easily.
ef2e9fda
Forked from an inaccessible project.
import { TestBed, inject } from '@angular/core/testing';
import { DataStoreService } from './data-store.service';
describe('DataStoreService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [DataStoreService]
});
});
it('should be created', inject([DataStoreService], (service: DataStoreService) => {
expect(service).toBeTruthy();
}));
});