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