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