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