UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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