This is where they should be as far as ember is concerned. Note this is a huge commit and we should be really careful everything continues to work properly.
11 lines
485 B
JavaScript
11 lines
485 B
JavaScript
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
acceptance("Admin - Search Log Term", { loggedIn: true });
|
|
|
|
QUnit.skip("show search log term details", async (assert) => {
|
|
await visit("/admin/logs/search_logs/term?term=ruby");
|
|
|
|
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");
|
|
});
|