Random Quote Machine ! NEED HELP

“My Random Quote Machine is working properly but i am not able to pass 2 test case please look into my project”

Hi Dear,

just checked your code, and found the issue about the test you mentioned.

I see you give id “new-quote” to the div tag that contains the new quote button.
Test supposed that element with id “new -quote” is an element respond to test trigger while your div tag doesn’t, but your button does.

Fix is simple, remove the “new-quote” id from div tag, and let this id for the button.

Happy programming.

Thank you @NULL_dev
Got all test case right.