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

17 lines
378 B
TypeScript
Raw Normal View History

2022-01-11 12:12:45 +01:00
import { TestBed } from '@angular/core/testing';
2022-09-30 15:13:36 +01:00
import { ChatSystemService } from './chat-system.service';
2022-01-11 12:12:45 +01:00
2022-09-30 15:13:36 +01:00
describe('ChatSystemService', () => {
let service: ChatSystemService;
2022-01-11 12:12:45 +01:00
beforeEach(() => {
TestBed.configureTestingModule({});
2022-09-30 15:13:36 +01:00
service = TestBed.inject(ChatSystemService);
2022-01-11 12:12:45 +01:00
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});