First commit

This commit is contained in:
2026-04-08 19:36:03 +02:00
parent 66769b52fd
commit 3fb1145c6b
37 changed files with 2498 additions and 494 deletions

22
src/app/chat/chat.spec.ts Normal file
View File

@@ -0,0 +1,22 @@
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();
});
});