Skip to content

Instantly share code, notes, and snippets.

@ianpetzer
Created June 14, 2013 07:48
Show Gist options
  • Save ianpetzer/5780182 to your computer and use it in GitHub Desktop.
Save ianpetzer/5780182 to your computer and use it in GitHub Desktop.
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