error-forma-pago.component.spec.ts
686 Bytes
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ErrorFormaPagoComponent } from './error-forma-pago.component';
describe('ErrorFormaPagoComponent', () => {
let component: ErrorFormaPagoComponent;
let fixture: ComponentFixture<ErrorFormaPagoComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ErrorFormaPagoComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ErrorFormaPagoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});