UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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