@pega/dx-component-builder-sdk
Version:
Utility for building custom UI components
25 lines (19 loc) • 677 B
text/typescript
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { WideNarrowFormComponent } from './wide-narrow-form.component';
describe('WideNarrowFormComponent', () => {
let component: WideNarrowFormComponent;
let fixture: ComponentFixture<WideNarrowFormComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [WideNarrowFormComponent]
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(WideNarrowFormComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});