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