2017-12-19 21:41:31 -05:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Search Log Term", { loggedIn: true });
|
|
|
|
|
|
|
|
QUnit.test("show search log term details", assert => {
|
|
|
|
visit("/admin/logs/search_logs/term/ruby");
|
|
|
|
andThen(() => {
|
|
|
|
assert.ok($('div.search-logs-filter').length, "has the search type filter");
|
2018-01-15 04:05:11 -05:00
|
|
|
assert.ok(exists('canvas.chartjs-render-monitor'), "has graph canvas");
|
2018-01-16 05:29:22 -05:00
|
|
|
assert.ok(exists('div.header-search-results'), "has header search results");
|
2017-12-19 21:41:31 -05:00
|
|
|
});
|
|
|
|
});
|