UX: Make user info rendering more consistent

This commit is contained in:
Robin Ward
2016-03-24 13:05:09 -04:00
parent 476a5fd43c
commit db15772ab1
19 changed files with 98 additions and 128 deletions

View File

@@ -4,8 +4,8 @@ acceptance("About");
test("viewing", () => {
visit("/about");
andThen(() => {
ok(exists('.about.admins .user-small'), 'has admins');
ok(exists('.about.moderators .user-small'), 'has moderators');
ok(exists('.about.admins .user-info'), 'has admins');
ok(exists('.about.moderators .user-info'), 'has moderators');
ok(exists('.about.stats tr td'), 'has stats');
});
});