meals-made-easy-app/src/app/pages/recipe-upload-page/steps/review/review.spec.ts
Jesse Brault 14acdc3e83 Prettier.
2026-01-28 18:17:50 -06:00

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();
});
});