mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
11 lines
300 B
JavaScript
11 lines
300 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Users List", { loggedIn: true });
|
|
|
|
test("lists users", () => {
|
|
visit("/admin/users/list/active");
|
|
andThen(() => {
|
|
ok(exists('.users-list .user'));
|
|
ok(!exists('.user:eq(0) .email small'), 'escapes email');
|
|
});
|
|
});
|