Files
doneit-web/src/app/services/chat/chat-methods.service.spec.ts
T
2021-12-22 10:31:10 +01:00

17 lines
383 B
TypeScript

import { TestBed } from '@angular/core/testing';
import { ChatMethodsService } from './chat-methods.service';
describe('ChatMethodsService', () => {
let service: ChatMethodsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ChatMethodsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});