mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
12 lines
282 B
Text
12 lines
282 B
Text
|
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');
|
||
|
});
|
||
|
});
|
||
|
|