This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/test/javascripts/integration/about-test.js.es6

12 lines
272 B
Text
Raw Normal View History

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');
});
});