discourse/test/javascripts/acceptance/users-test.js.es6

18 lines
432 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("User Directory");
test("Visit Page", function() {
visit("/users");
andThen(() => {
ok($('body.users-page').length, "has the body class");
ok(exists('.directory table tr'), "has a list of users");
});
});
test("Visit All Time", function() {
visit("/users?period=all");
andThen(() => {
ok(exists('.time-read'), "has time read column");
});
});