feat: Added a chatroom component, that is navigatable by the chatroom's ID
[demos/kafka/chat] / src / app / chatroom.service.spec.ts
1 import { TestBed } from '@angular/core/testing';
2
3 import { ChatroomService } from './chatroom.service';
4
5 describe('ChatroomService', () => {
6   let service: ChatroomService;
7
8   beforeEach(() => {
9     TestBed.configureTestingModule({});
10     service = TestBed.inject(ChatroomService);
11   });
12
13   it('should be created', () => {
14     expect(service).toBeTruthy();
15   });
16 });