feat: Added a chatroom component, that is navigatable by the chatroom's ID
[demos/kafka/chat] / src / app / chatroom / chatroom.component.spec.ts
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { ChatroomComponent } from './chatroom.component';
4
5 describe('ChatroomComponent', () => {
6   let component: ChatroomComponent;
7   let fixture: ComponentFixture<ChatroomComponent>;
8
9   beforeEach(async () => {
10     await TestBed.configureTestingModule({
11       declarations: [ ChatroomComponent ]
12     })
13     .compileComponents();
14
15     fixture = TestBed.createComponent(ChatroomComponent);
16     component = fixture.componentInstance;
17     fixture.detectChanges();
18   });
19
20   it('should create', () => {
21     expect(component).toBeTruthy();
22   });
23 });