mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-12 08:41:23 -05:00
12 lines
273 B
Text
12 lines
273 B
Text
|
import { acceptance } from "helpers/qunit-helpers";
|
||
|
acceptance("Search - Full Page");
|
||
|
|
||
|
test("search", (assert) => {
|
||
|
visit("/search?q=trout");
|
||
|
|
||
|
andThen(() => {
|
||
|
assert.ok(find('input.search').length > 0);
|
||
|
assert.ok(find('.topic-list-item').length > 0);
|
||
|
});
|
||
|
});
|