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