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

17 lines
347 B
TypeScript
Raw Normal View History

2020-10-30 15:22:35 +01:00
import { TestBed } from '@angular/core/testing';
import { ChatService } from './chat.service';
describe('ChatService', () => {
let service: ChatService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(ChatService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});