rename files

This commit is contained in:
Peter Maquiran
2022-09-30 15:13:36 +01:00
parent 64ad7bbc7f
commit 12cf5831a8
36 changed files with 256 additions and 315 deletions
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { ChatSystemService } from './chat-system.service';
describe('ChatSystemService', () => {
let service: ChatSystemService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ChatSystemService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});