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