import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CaRightSidePanelComponent } from './ca-right-side-panel.component'; describe('CaRightSidePanelComponent', () => { let component: CaRightSidePanelComponent; let fixture: ComponentFixture; beforeEach(() => { TestBed.configureTestingModule({ declarations: [CaRightSidePanelComponent] }); fixture = TestBed.createComponent(CaRightSidePanelComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });