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