mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
11 lines
282 B
JavaScript
11 lines
282 B
JavaScript
integration("About");
|
|
|
|
test("viewing", function() {
|
|
visit("/about");
|
|
andThen(function() {
|
|
ok(exists('.about.admins .user-small'), 'has admins');
|
|
ok(exists('.about.moderators .user-small'), 'has moderators');
|
|
ok(exists('.about.stats tr td'), 'has stats');
|
|
});
|
|
});
|
|
|