21 lines
564 B
TypeScript
21 lines
564 B
TypeScript
|
import { HttpClientModule } from '@angular/common/http';
|
||
|
import { inject, TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { BatchIntegrityReportService } from './batch-integrity-report.service';
|
||
|
|
||
|
describe('BatchIntegrityService', () => {
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({
|
||
|
imports: [HttpClientModule],
|
||
|
providers: [BatchIntegrityReportService],
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should be created', inject(
|
||
|
[BatchIntegrityReportService],
|
||
|
(service: BatchIntegrityReportService) => {
|
||
|
expect(service).toBeTruthy();
|
||
|
},
|
||
|
));
|
||
|
});
|