UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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