UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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