Feature: Added the customer module to list / edit customers. This is needed to add the customer discount functionality
This commit is contained in:
15
bookie/src/app/customers/customer-resolver.service.spec.ts
Normal file
15
bookie/src/app/customers/customer-resolver.service.spec.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { inject, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CustomerResolver } from './customer-resolver.service';
|
||||
|
||||
describe('CustomerResolver', () => {
|
||||
beforeEach(() => {
|
||||
TestBed.configureTestingModule({
|
||||
providers: [CustomerResolver],
|
||||
});
|
||||
});
|
||||
|
||||
it('should be created', inject([CustomerResolver], (service: CustomerResolver) => {
|
||||
expect(service).toBeTruthy();
|
||||
}));
|
||||
});
|
||||
Reference in New Issue
Block a user