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