import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';

import { PegaDxilMyPicklistComponent } from './pega-dxil-my-picklist.component';

describe('PegaDxilMyPicklistComponent', () => {
  let component: PegaDxilMyPicklistComponent;
  let fixture: ComponentFixture<PegaDxilMyPicklistComponent>;

  beforeEach(waitForAsync(() => {
    TestBed.configureTestingModule({
      declarations: [PegaDxilMyPicklistComponent]
    }).compileComponents();
  }));

  beforeEach(() => {
    fixture = TestBed.createComponent(PegaDxilMyPicklistComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
