UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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