mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
17 lines
368 B
TypeScript
17 lines
368 B
TypeScript
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();
|
|
});
|
|
});
|