Build a Recipe Page - Build a Recipe Page

Tell us what’s happening:

I am attempting to run the tests on the ‘Build a Recipe Page’ lab in the Full Stack Dev curriculum. I see the text “//running tests” in the console pane, but nothing else happens. No feedback, no errors, no sign of the tests being completed. Just trying to see if I missed something. Thanks.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Pineapple Milkshake</title>
    <meta charset="UTF-8">
  </head>
  <body>
    <h1>Pineapple Milkshake</h1>
    <p>Pick the time of day or day of the year. There are no wrong answers when it comes to ordering a delicious, refreshing and simple pineapple milkshake! Whether as a breakfast beverage, mid-day replenishment, or evening treat, a tall pineapple milkshake is the perfect option to satisfy the pallette. Read-on for an easy to prepare recipe that will have you pleasantly fulfilled in minutes.</p>
    <h2>Ingredients</h2>
    <ul>
      <li>1 cup freshly diced pineapple</li>
      <li>1 pint vanilla ice cream</li>
      <li>1 cup milk</li>
      <li>1 pinch ground cinnamon</li>
    </ul>
    <h2>Instructions</h2>
    <ol>
      <li>Place diced pineapple, ice cream, milk, and cinnamon into a blender or food processor.</li>
      <li>Cover and blend until smooth.</li>
      <li>Ice cream can be substituted for frozen yogurt</li>
      <li>Use milk variety of choice, or ice water for more of a juice texture.</li>
    </ol>
    <img src="https://www.allrecipes.com/thmb/vNtxco2LLOhReTSVaQtYXx67Ux4=/750x0/filters:no_upscale():max_bytes(150000):strip_icc()/1009746-f49300d5b7bf4e32ab9b30f9f9ffc413.jpg" alt="A pineapple milkshake in a glass.">
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:134.0) Gecko/20100101 Firefox/134.0

Challenge Information:

Build a Recipe Page - Build a Recipe Page

Your code passed the test for me.

You may have to do a “hard refresh” of a page in your browser if you have an out of date, cached version of that website.

While on the problematic site use the key combination below to trigger a hard refresh depending on your operating system:

  • Windows: CTRL + F5
  • Mac/Apple: Apple + Shift + R or Command + Shift + R
  • Linux: F5

To learn more about this read: Refresh your cache - When hitting F5 just isn't enough!

If a hard refresh doesn’t work, try opening the problematic page in your browser’s private browsing mode.

Worked like a charm. Thank you!

1 Like