mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
12 lines
321 B
JavaScript
12 lines
321 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("About");
|
|
|
|
test("viewing", () => {
|
|
visit("/about");
|
|
andThen(() => {
|
|
ok(exists('.about.admins .user-info'), 'has admins');
|
|
ok(exists('.about.moderators .user-info'), 'has moderators');
|
|
ok(exists('.about.stats tr td'), 'has stats');
|
|
});
|
|
});
|
|
|