hemat_solution/src/app/content/hemat-app/master/master-building/master-building.component.spec.ts

24 lines
656 B
TypeScript

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