import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaFactoringDropdownComponent } from './ca-factoring-dropdown.component'; describe('CaFactoringDropdownComponent', () => { let component: CaFactoringDropdownComponent; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CaFactoringDropdownComponent] }) .compileComponents(); fixture = TestBed.createComponent(CaFactoringDropdownComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });