mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 18:15:25 +08:00
19 lines
461 B
Plaintext
19 lines
461 B
Plaintext
|
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');
|
||
|
});
|
||
|
});
|