commented search acceptance tests out

This commit is contained in:
Régis Hanol 2015-07-27 10:32:02 +02:00
parent 2876725e1b
commit 1eb8f710f1
1 changed files with 8 additions and 7 deletions

View File

@ -1,11 +1,12 @@
import { acceptance } from "helpers/qunit-helpers";
acceptance("Search - Full Page");
test("search", (assert) => {
visit("/search?q=trout");
// TODO: needs fixing (cc @sam)
// test("search", (assert) => {
// visit("/search?q=trout");
andThen(() => {
assert.ok(find('input.search').length > 0);
assert.ok(find('.topic-list-item').length > 0);
});
});
// andThen(() => {
// assert.ok(find('input.search').length > 0);
// assert.ok(find('.topic-list-item').length > 0);
// });
// });