We used many global functions to handle tests when they should be imported like other libraries in our application. This also gets us closer to the way Ember CLI prefers our tests to be laid out.
22 lines
559 B
JavaScript
22 lines
559 B
JavaScript
import { skip } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
acceptance("Admin - Search Logs", { loggedIn: true });
|
|
|
|
skip("show search logs", async (assert) => {
|
|
await visit("/admin/logs/search_logs");
|
|
|
|
assert.ok($("table.search-logs-list.grid").length, "has the div class");
|
|
|
|
assert.ok(
|
|
exists(".search-logs-list .admin-list-item .col"),
|
|
"has a list of search logs"
|
|
);
|
|
|
|
await click(".term a");
|
|
|
|
assert.ok(
|
|
$("div.search-logs-filter").length,
|
|
"it should show the search log term page"
|
|
);
|
|
});
|