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