discourse/test/javascripts/integration/users-test.js.es6
Robin Ward 7ef306cd3b A bunch of tweaks to the Users directory
- 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"
2015-03-19 12:29:38 -04:00

8 lines
173 B
JavaScript

integration("User Directory");
test("Visit Page", function() {
visit("/users");
andThen(() => {
ok(exists('.directory table tr'), "has a list of users");
});
});