2015-04-06 14:14:00 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("About");
|
2014-08-12 11:15:32 -04:00
|
|
|
|
2018-07-19 05:35:10 -04:00
|
|
|
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");
|
2018-06-15 11:03:24 -04:00
|
|
|
});
|