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