@pega/dx-component-builder-sdk
Version:
Utility for building custom UI components
22 lines (17 loc) • 588 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { FieldGroupComponent } from './field-group.component';
describe('FieldGroupComponent', () => {
let component: FieldGroupComponent;
let fixture: ComponentFixture<FieldGroupComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [FieldGroupComponent]
});
fixture = TestBed.createComponent(FieldGroupComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});