2017-12-20 10:41:31 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Search Log Term", { loggedIn: true });
|
|
|
|
|
2019-05-17 02:15:37 +08:00
|
|
|
QUnit.skip("show search log term details", async assert => {
|
2019-03-29 10:39:44 +08:00
|
|
|
await visit("/admin/logs/search_logs/term?term=ruby");
|
2018-07-19 17:35:10 +08:00
|
|
|
|
|
|
|
assert.ok($("div.search-logs-filter").length, "has the search type filter");
|
|
|
|
assert.ok(exists("canvas.chartjs-render-monitor"), "has graph canvas");
|
|
|
|
assert.ok(exists("div.header-search-results"), "has header search results");
|
2017-12-20 10:41:31 +08:00
|
|
|
});
|