2020-10-11 05:26:29 +00:00
|
|
|
import { inject, TestBed } from '@angular/core/testing';
|
2019-06-15 17:39:43 +00:00
|
|
|
|
2020-10-11 05:26:29 +00:00
|
|
|
import { TaxService } from './tax.service';
|
2019-06-15 17:39:43 +00:00
|
|
|
|
|
|
|
describe('TaxService', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-10-11 05:26:29 +00:00
|
|
|
providers: [TaxService],
|
2019-06-15 17:39:43 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be created', inject([TaxService], (service: TaxService) => {
|
|
|
|
expect(service).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|