discourse/test/javascripts/acceptance/search-test.js.es6

27 lines
711 B
Plaintext
Raw Normal View History

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-menu .results ul li'), 'no results by default');
});
2015-08-10 15:31:10 -04:00
fillIn('#search-term', 'dev');
keyEvent('#search-term', 'keyup', 16);
2015-08-10 15:31:10 -04:00
andThen(() => {
assert.ok(exists('.search-menu .results ul li'), 'it shows results');
2015-08-10 15:31:10 -04:00
});
click('.show-help');
andThen(() => {
assert.equal(find('.full-page-search').val(), 'dev', 'it shows the search term');
assert.ok(exists('.search-advanced-options'), 'advanced search is expanded');
});
});