@pega/dx-component-builder-sdk
Version:
Utility for building custom UI components
25 lines (19 loc) • 737 B
text/typescript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { PegaDxilMyPageWidgetComponent } from './pega-dxil-my-page-widget.component';
describe('PegaDxilMyPageWidgetComponent', () => {
let component: PegaDxilMyPageWidgetComponent;
let fixture: ComponentFixture<PegaDxilMyPageWidgetComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [PegaDxilMyPageWidgetComponent]
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(PegaDxilMyPageWidgetComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});