rewrite chat

This commit is contained in:
Peter Maquiran
2022-01-10 23:52:33 +01:00
parent 3e4067e851
commit 7a6b2a57ea
8 changed files with 69 additions and 54 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ChatUserService } from './chat-user.service';
describe('ChatUserService', () => {
let service: ChatUserService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ChatUserService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});