UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

25 lines (19 loc) 780 B
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { PegaDxilMyTwoColumnDetailsComponent } from './pega-dxil-my-two-column-details.component'; describe('PegaDxilMyTwoColumnDetailsComponent', () => { let component: PegaDxilMyTwoColumnDetailsComponent; let fixture: ComponentFixture<PegaDxilMyTwoColumnDetailsComponent>; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [PegaDxilMyTwoColumnDetailsComponent] }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(PegaDxilMyTwoColumnDetailsComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });