Settle Options are now stored in the Database and can be updated

This commit is contained in:
2020-12-13 09:44:32 +05:30
parent d65379a068
commit 27aa4d12a6
72 changed files with 1326 additions and 551 deletions

View File

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