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