This gets us closer to how newer Ember versions want to do things, but with a bit of Discourse flair. `acceptance` now takes a function as a parameter, and tests need to be declared in that new function context. A new helper, `needs`, is passed as a parameter. You can use it to set up the test the way you want.
16 lines
585 B
JavaScript
16 lines
585 B
JavaScript
import { visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Search Log Term", function (needs) {
|
|
needs.user();
|
|
|
|
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");
|
|
});
|
|
});
|