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