Add publication to localstorage

This commit is contained in:
Peter Maquiran
2021-07-21 19:08:31 +01:00
parent 5aa5288ae8
commit 6460e1ce1a
15 changed files with 292 additions and 39 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { PublicationEventFolderService } from './publication-event-folder.service';
describe('PublicationEventFolderService', () => {
let service: PublicationEventFolderService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(PublicationEventFolderService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});