Files
doneit-web/src/app/store/chat/chat-user.service.spec.ts
T

17 lines
368 B
TypeScript
Raw Normal View History

2021-08-19 17:00:31 +01:00
import { TestBed } from '@angular/core/testing';
2021-08-24 14:07:27 +01:00
import { ChatUserService } from './chat-user.service';
2021-08-19 17:00:31 +01:00
2021-08-24 14:07:27 +01:00
describe('ChatUserService', () => {
let service: ChatUserService;
2021-08-19 17:00:31 +01:00
beforeEach(() => {
TestBed.configureTestingModule({});
2021-08-24 14:07:27 +01:00
service = TestBed.inject(ChatUserService);
2021-08-19 17:00:31 +01:00
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});