UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

23 lines (17 loc) 642 B
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ErrorBoundaryComponent } from './error-boundary.component'; describe('ErrorBoundaryComponent', () => { let component: ErrorBoundaryComponent; let fixture: ComponentFixture<ErrorBoundaryComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [ErrorBoundaryComponent] }).compileComponents(); fixture = TestBed.createComponent(ErrorBoundaryComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });