Files
Nexum/src/app/chat/chat.spec.ts
2026-04-08 19:36:03 +02:00

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();
});
});