barker/bookie/src/app/sales/discount/customer-discounts.service....

19 lines
459 B
TypeScript

import { inject, TestBed } from '@angular/core/testing';
import { CustomerDiscountsService } from './customer-discounts.service';
describe('CustomerDiscountsService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [CustomerDiscountsService],
});
});
it('should be created', inject(
[CustomerDiscountsService],
(service: CustomerDiscountsService) => {
expect(service).toBeTruthy();
},
));
});