barker/bookie/src/app/taxes/tax.service.spec.ts

16 lines
357 B
TypeScript
Raw Normal View History

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