UNPKG

@pega/dx-component-builder-sdk

Version:

Utility for building custom UI components

25 lines (19 loc) 698 B
import { ComponentFixture, TestBed } from '@angular/core/testing'; import { SimpleTableManualComponent } from './simple-table-manual.component'; describe('SimpleTableManualComponent', () => { let component: SimpleTableManualComponent; let fixture: ComponentFixture<SimpleTableManualComponent>; beforeEach(async () => { await TestBed.configureTestingModule({ declarations: [SimpleTableManualComponent] }).compileComponents(); }); beforeEach(() => { fixture = TestBed.createComponent(SimpleTableManualComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });