mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:03:00 +08:00
12 lines
300 B
Plaintext
12 lines
300 B
Plaintext
|
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');
|
||
|
});
|
||
|
});
|