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