This commit is contained in:
Amritanshu
2019-06-15 23:09:43 +05:30
parent 3dcf1c4c42
commit 459ab244ff
70 changed files with 2140 additions and 103 deletions

View File

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