mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 03:47:34 -05:00
19 lines
461 B
Text
19 lines
461 B
Text
|
import { acceptance } from "helpers/qunit-helpers";
|
||
|
acceptance("Search");
|
||
|
|
||
|
test("search", (assert) => {
|
||
|
visit("/");
|
||
|
|
||
|
click('#search-button');
|
||
|
|
||
|
andThen(() => {
|
||
|
assert.ok(exists('#search-term'), 'it shows the search bar');
|
||
|
assert.ok(!exists('#search-dropdown .results ul li'), 'no results by default');
|
||
|
});
|
||
|
|
||
|
fillIn('#search-term', 'dev');
|
||
|
andThen(() => {
|
||
|
assert.ok(exists('#search-dropdown .results ul li'), 'it shows results');
|
||
|
});
|
||
|
});
|