import { ComponentFixture, TestBed } from '@angular/core/testing' import { NgxBootstrapIconsModule, allIcons } from 'ngx-bootstrap-icons' import { ClearableBadgeComponent } from './clearable-badge.component' describe('ClearableBadgeComponent', () => { let component: ClearableBadgeComponent let fixture: ComponentFixture beforeEach(async () => { TestBed.configureTestingModule({ imports: [ NgxBootstrapIconsModule.pick(allIcons), ClearableBadgeComponent, ], }).compileComponents() fixture = TestBed.createComponent(ClearableBadgeComponent) component = fixture.componentInstance fixture.detectChanges() }) it('should support selected', () => { fixture.componentRef.setInput('selected', true) expect(component.active()).toBeTruthy() }) it('should support numbered', () => { fixture.componentRef.setInput('number', 3) fixture.detectChanges() expect(component.active()).toBeTruthy() expect((fixture.nativeElement as HTMLDivElement).textContent).toContain('3') }) it('should support selected', () => { let clearedResult fixture.componentRef.setInput('selected', true) fixture.detectChanges() component.cleared.subscribe((clear) => { clearedResult = clear }) fixture.nativeElement .querySelectorAll('button')[0] .dispatchEvent(new MouseEvent('click')) expect(clearedResult).toBeTruthy() }) })