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(); }); });