UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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