mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
14 lines
405 B
JavaScript
14 lines
405 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Admin - Search Logs", { loggedIn: true });
|
|
|
|
QUnit.test("show search logs", assert => {
|
|
visit("/admin/logs/search_logs");
|
|
andThen(() => {
|
|
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"
|
|
);
|
|
});
|
|
});
|