2017-11-15 08:13:50 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Search Logs", { loggedIn: true });
|
|
|
|
|
2019-05-17 02:15:37 +08:00
|
|
|
QUnit.skip("show search logs", async assert => {
|
2018-07-19 17:35:10 +08:00
|
|
|
await visit("/admin/logs/search_logs");
|
|
|
|
|
|
|
|
assert.ok($("table.search-logs-list.grid").length, "has the div class");
|
2019-03-29 10:39:44 +08:00
|
|
|
|
2018-07-19 17:35:10 +08:00
|
|
|
assert.ok(
|
|
|
|
exists(".search-logs-list .admin-list-item .col"),
|
|
|
|
"has a list of search logs"
|
|
|
|
);
|
2019-03-29 10:39:44 +08:00
|
|
|
|
|
|
|
await click(".term a");
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
$("div.search-logs-filter").length,
|
|
|
|
"it should show the search log term page"
|
|
|
|
);
|
2017-11-15 08:13:50 +08:00
|
|
|
});
|