23 lines
513 B
TypeScript
23 lines
513 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { Chat } from './chat';
|
|
|
|
describe('Chat', () => {
|
|
let component: Chat;
|
|
let fixture: ComponentFixture<Chat>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [Chat],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(Chat);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|