mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 06:43:44 +08:00
947495e70d
`/search_logs/term?term` is alittle weird looking but unless we add proper slug support to term, we're going to have to live with this first.
11 lines
467 B
JavaScript
11 lines
467 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("Admin - Search Log Term", { loggedIn: true });
|
|
|
|
QUnit.test("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");
|
|
});
|