25 + 5 clock test

Tell us what’s happening:
I think it works as expected ( not sure if I am missing something. But I get many failure in the test result. Any advice?

Your code so far
https://codepen.io/kailoon/pen/qBNKZJW

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.183 Safari/537.36.

Challenge: Build a 25 + 5 Clock

Link to the challenge:

yes it fails here:

8. I can see an element with corresponding id=“time-left”. NOTE: Paused or running, the value in this field should always be displayed in mm:ss format (i.e. 25:00).

          {minutes < 10 ? ("0" + minutes).slice(-2) : minutes} :
          {seconds < 10 ? ("0" + seconds).slice(-2) : seconds}
        </div>

seems to match the keywords

Yay, finally, all green! Thanks :slight_smile: