2020-10-11 05:26:29 +00:00
|
|
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
2019-07-11 06:47:41 +00:00
|
|
|
|
2020-10-11 05:26:29 +00:00
|
|
|
import { SalesHomeComponent } from './sales-home.component';
|
2019-07-11 06:47:41 +00:00
|
|
|
|
|
|
|
describe('SalesHomeComponent', () => {
|
|
|
|
let component: SalesHomeComponent;
|
|
|
|
let fixture: ComponentFixture<SalesHomeComponent>;
|
|
|
|
|
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2020-10-11 05:26:29 +00:00
|
|
|
declarations: [SalesHomeComponent],
|
|
|
|
}).compileComponents();
|
2019-07-11 06:47:41 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(SalesHomeComponent);
|
|
|
|
component = fixture.componentInstance;
|
|
|
|
fixture.detectChanges();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create', () => {
|
|
|
|
expect(component).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|