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