Add new components for AI and tutorials, update routing, and enhance file upload functionality

This commit is contained in:
liosha84
2025-08-04 10:38:46 +03:00
parent 18c6906637
commit 483d029952
206 changed files with 2362 additions and 1199 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { AiWelcomeComponent } from './ai-welcome.component';
describe('AiWelcomeComponent', () => {
let component: AiWelcomeComponent;
let fixture: ComponentFixture<AiWelcomeComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [AiWelcomeComponent]
})
.compileComponents();
fixture = TestBed.createComponent(AiWelcomeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});