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