mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:39:36 +08:00
11 lines
323 B
JavaScript
11 lines
323 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Admin - Users List", { loggedIn: true });
|
|
|
|
QUnit.test("lists users", assert => {
|
|
visit("/admin/users/list/active");
|
|
andThen(() => {
|
|
assert.ok(exists('.users-list .user'));
|
|
assert.ok(!exists('.user:eq(0) .email small'), 'escapes email');
|
|
});
|
|
}); |