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.
15 lines
512 B
JavaScript
15 lines
512 B
JavaScript
import { visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("About", function () {
|
|
test("viewing", async (assert) => {
|
|
await visit("/about");
|
|
|
|
assert.ok($("body.about-page").length, "has body class");
|
|
assert.ok(exists(".about.admins .user-info"), "has admins");
|
|
assert.ok(exists(".about.moderators .user-info"), "has moderators");
|
|
assert.ok(exists(".about.stats tr td"), "has stats");
|
|
});
|
|
});
|