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