Files
micro-frontend/templete/src/app/content/main-dashboard-content/main-dashboard-content.component.spec.ts
2025-11-11 11:19:13 +07:00

24 lines
697 B
TypeScript

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