Add user module routing, integrate markdown support, and enhance dialog functionality

This commit is contained in:
liosha84
2025-07-05 14:26:02 +03:00
parent 25e54d5050
commit fa27aca298
44 changed files with 2616 additions and 135 deletions
@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { UserWelcomeComponent } from './user-welcome.component';
describe('UserWelcomeComponent', () => {
let component: UserWelcomeComponent;
let fixture: ComponentFixture<UserWelcomeComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [UserWelcomeComponent]
})
.compileComponents();
fixture = TestBed.createComponent(UserWelcomeComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});