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