26 lines
657 B
TypeScript
26 lines
657 B
TypeScript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { GroupUsersComponent } from './group-users.component';
|
|
|
|
describe('GroupUsersComponent', () => {
|
|
let component: GroupUsersComponent;
|
|
let fixture: ComponentFixture<GroupUsersComponent>;
|
|
|
|
beforeEach(async(() => {
|
|
TestBed.configureTestingModule({
|
|
declarations: [ GroupUsersComponent ]
|
|
})
|
|
.compileComponents();
|
|
}));
|
|
|
|
beforeEach(() => {
|
|
fixture = TestBed.createComponent(GroupUsersComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|