mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
12 lines
394 B
JavaScript
12 lines
394 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("About");
|
|
|
|
QUnit.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");
|
|
});
|