UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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