first commit

This commit is contained in:
2025-11-11 11:19:13 +07:00
parent c838b2a979
commit fe028d274b
64 changed files with 8125 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MainDashboardContentComponent } from './main-dashboard-content.component';
describe('MainDashboardContentComponent', () => {
let component: MainDashboardContentComponent;
let fixture: ComponentFixture<MainDashboardContentComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [MainDashboardContentComponent]
})
.compileComponents();
fixture = TestBed.createComponent(MainDashboardContentComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});