integrasi master building dan penyasuaian UI dashboard monitoring building

This commit is contained in:
2024-05-21 16:14:18 +07:00
parent bb10d57139
commit 608c53ab66
17 changed files with 884 additions and 2 deletions

View File

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