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