Created
June 14, 2013 07:48
-
-
Save ianpetzer/5780182 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test("Check retrieval of books", function() { | |
expect(6); | |
visit("/").then(function() { | |
ok(exists(".navBar"), "The navbar was rendered"); | |
ok(exists("#searchButton"), "SearchButton was found"); | |
}); | |
visit("/").then(function() { | |
return click("#searchButton"); | |
}).then(function() { | |
equal(find(".searchResult").length, 3, "Retrieved correct number of search results"); | |
ok(exists(".searchResult h2:contains('The Great Gatsby')"), "Retrieved title of first book"); | |
ok(exists(".searchResult h2:contains('The Prince')"), "Retrieved title of second book"); | |
ok(exists(".searchResult h2:contains('Slaughterhouse-Five')"), "Retrieved title of third book"); | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment