mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 06:53:46 +08:00
7ef306cd3b
- Move user directory from `/directory` to `/users/` - Defaults to 'weekly' time period - Don't include deleted topics/posts in the results - Move heart icon to header instead of on each row - "Users" instead of "Users found"
9 lines
173 B
JavaScript
9 lines
173 B
JavaScript
integration("User Directory");
|
|
|
|
test("Visit Page", function() {
|
|
visit("/users");
|
|
andThen(() => {
|
|
ok(exists('.directory table tr'), "has a list of users");
|
|
});
|
|
});
|