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