UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

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