barker/bookie/src/app/customers/customer.service.spec.ts

16 lines
387 B
TypeScript

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