mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 04:42:02 -05:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
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);
|
|
});
|
|
});
|