This commit is contained in:
Peter Maquiran
2022-01-30 09:34:56 +01:00
parent b734112eb6
commit 00bff45585
4 changed files with 250 additions and 181 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ChatStorageService } from './chat-storage.service';
describe('ChatStorageService', () => {
let service: ChatStorageService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ChatStorageService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});