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(); })); });