@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 { NarrowWideFormComponent } from './narrow-wide-form.component';
describe('NarrowWideFormComponent', () => {
let component: NarrowWideFormComponent;
let fixture: ComponentFixture<NarrowWideFormComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [NarrowWideFormComponent]
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(NarrowWideFormComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});