Add the integration test for search back using a fixture.

This commit is contained in:
Robin Ward
2014-09-03 13:43:26 -04:00
parent e9600d7cb1
commit a71640c15f
3 changed files with 6 additions and 10 deletions

View File

@@ -36,10 +36,9 @@ test("header", function() {
});
// Perform Search
// TODO: @Robin how do I update this? can we have some sort of comment at the top?
// fillIn("#search-term", "hello");
// andThen(function() {
// ok(exists("#search-dropdown .heading"), "when user completes a search, search box shows search results");
// equal(find("#search-dropdown a:not(.filter):first").attr("href"), "some-url", "there is a search result");
// });
fillIn("#search-term", "hello");
andThen(function() {
ok(exists("#search-dropdown .heading"), "when user completes a search, search box shows search results");
equal(find("#search-dropdown a:not(.filter):first").attr("href"), "/t/hello-bar-integration-issues/17638", "there is a search result");
});
});