18 lines
523 B
TypeScript
18 lines
523 B
TypeScript
import { HttpClientModule } from '@angular/common/http';
|
|
import { inject, TestBed } from '@angular/core/testing';
|
|
|
|
import { RawMaterialCostService } from './raw-material-cost.service';
|
|
|
|
describe('RawMaterialCostService', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
imports: [HttpClientModule],
|
|
providers: [RawMaterialCostService],
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([RawMaterialCostService], (service: RawMaterialCostService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|