UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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