barker/bookie/src/app/sales/receive-payment/receive-payment.component.s...

26 lines
685 B
TypeScript

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