Case Sources added primarily to filter the kind of cases in case list.

This commit is contained in:
2021-01-11 10:34:47 +05:30
parent 57874daf52
commit 748fb37511
33 changed files with 673 additions and 33 deletions

View File

@ -0,0 +1,15 @@
import { inject, TestBed } from '@angular/core/testing';
import { CaseSourceService } from './case-source.service';
describe('CaseSourceService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [CaseSourceService],
});
});
it('should be created', inject([CaseSourceService], (service: CaseSourceService) => {
expect(service).toBeTruthy();
}));
});