barker/bookie/src/app/sales/choose-customer/choose-customer.component.s...

27 lines
710 B
TypeScript

import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { ChooseCustomerComponent } from './choose-customer.component';
describe('ChooseCustomerComponent', () => {
let component: ChooseCustomerComponent;
let fixture: ComponentFixture<ChooseCustomerComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ChooseCustomerComponent],
}).compileComponents();
}),
);
beforeEach(() => {
fixture = TestBed.createComponent(ChooseCustomerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});