mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 12:43:40 +08:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
integration("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.stats tr td'), 'has stats');
|
|
});
|
|
});
|
|
|