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

17 lines
358 B
TypeScript
Raw Normal View History

2021-08-18 18:58:28 +01:00
import { TestBed } from '@angular/core/testing';
2022-01-12 12:44:51 +01:00
import { WsChatService } from './ws-chat.service';
2021-08-18 18:58:28 +01:00
2022-01-12 12:44:51 +01:00
describe('WsChatService', () => {
let service: WsChatService;
2021-08-18 18:58:28 +01:00
beforeEach(() => {
TestBed.configureTestingModule({});
2022-01-12 12:44:51 +01:00
service = TestBed.inject(WsChatService);
2021-08-18 18:58:28 +01:00
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});