UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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