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

File diff suppressed because one or more lines are too long

View File

@ -38,10 +38,6 @@ export default function() {
return [200, {"Content-Type": "text/html"}, "<div class='page-not-found'>not found</div>"];
});
this.get("/search", function() {
return response([ { type: "topic", more: true, results: [ { url: "some-url" } ] } ]);
});
this.get('/draft.json', function() {
return response({});
});

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");
});
});