We used many global functions to handle tests when they should be imported like other libraries in our application. This also gets us closer to the way Ember CLI prefers our tests to be laid out.
28 lines
662 B
JavaScript
28 lines
662 B
JavaScript
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("Reports", {
|
|
loggedIn: true,
|
|
});
|
|
|
|
test("Visit reports page", async (assert) => {
|
|
await visit("/admin/reports");
|
|
|
|
assert.equal($(".reports-list .report").length, 1);
|
|
|
|
const $report = $(".reports-list .report:first-child");
|
|
|
|
assert.equal($report.find(".report-title").html().trim(), "My report");
|
|
|
|
assert.equal(
|
|
$report.find(".report-description").html().trim(),
|
|
"List of my activities"
|
|
);
|
|
});
|
|
|
|
test("Visit report page", async (assert) => {
|
|
await visit("/admin/reports/staff_logins");
|
|
|
|
assert.ok(exists(".export-csv-btn"));
|
|
});
|