In this project you are given a web-based application that reads RSS feeds. The original developer of this application clearly saw the value in testing, they've already included Jasmine and even started writing their first test suite! Unfortunately,they decided to move on to start their own company and we're now left with an application with an incomplete test suite. That's where you come in.
##Tests
-
Test that loops through each feed in the allFeeds object and ensures it has a URL defined and that the URL is not empty.
-
Test that loops through each feed in the allFeeds object and ensures it has a name defined and that the name is not empty.
-
Test that ensures the menu element is hidden by default.
-
Test that ensures the menu changes visibility when the menu icon is clicked. This test has two expectations: does the menu display when clicked and does it hide when clicked again.
-
Test that ensures when the loadFeed function is called and completes its work, there is at least a single .entry element within the .feed container.
-
Test that ensures when a new feed is loaded by the loadFeed function that the content actually changes.
Download repository to your computer- git clone "https://github.com/lizasweet3737/frontend-nanodegree-feedreader.git"
Open file index.html in browser. The test results will be displayed at the bottom of the page. Tests are listed above.