Online cookbook for casual chefs with search, filter, and favoriting functionality; lightweight meal planning; and tracking of pantry contents with recipe requirements to render missing ingredients.
Look over Recipe.js and Recipe-test.js: does anything look ill-advised?
Run npm test in the terminal and confirm that all test pass
Review spec for Recipe class and
confirm that all functionality is present (note that right now there are not explicit methods for returning a recipe's ingredient names or instructions; these are properties of the object that can be accessed with myRecipe.name or myRecipe.ingredients[0].name)
confirm that all properties/methods are being tested
---> ((are you in the right branch??))
What does this PR do?
Recipe
class and associated tests.How should it be tested?
Recipe.js
andRecipe-test.js
: does anything look ill-advised?npm test
in the terminal and confirm that all test passmyRecipe.name
ormyRecipe.ingredients[0].name
)