24 lines
643 B
TypeScript
24 lines
643 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { GroupItemEditComponent } from './group-item-edit.component';
|
|
|
|
describe('GroupItemEditComponent', () => {
|
|
let component: GroupItemEditComponent;
|
|
let fixture: ComponentFixture<GroupItemEditComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [GroupItemEditComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(GroupItemEditComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|