hemat_solution/src/app/content/hemat-app/cost-management/cost-management.component.spec.ts

24 lines
656 B
TypeScript

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