2017-12-19 21:41:31 -05:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Search Log Term", { loggedIn: true });
|
|
|
|
|
2019-05-16 14:15:37 -04:00
|
|
|
QUnit.skip("show search log term details", async assert => {
|
2019-03-28 22:39:44 -04:00
|
|
|
await visit("/admin/logs/search_logs/term?term=ruby");
|
2018-07-19 05:35:10 -04: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-19 21:41:31 -05:00
|
|
|
});
|