astute/AstuteClient2/src/app/invoice-payment/invoice-payment.component.spec.ts
2018-09-28 12:40:49 -04:00

26 lines
685 B
TypeScript

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