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