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