new saved view service replaces old local storage based service

This commit is contained in:
jonaswinkler 2020-12-14 18:46:11 +01:00
parent 926e746005
commit 13d934dc6e
7 changed files with 89 additions and 105 deletions

View file

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { SavedViewService } from './saved-view.service';
describe('SavedViewService', () => {
let service: SavedViewService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(SavedViewService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});