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

11 lines
265 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("User Directory - Mobile", { mobileView: true });
2017-06-15 01:57:58 +08:00
QUnit.test("Visit Page", assert => {
visit("/users");
andThen(() => {
2018-06-15 23:03:24 +08:00
assert.ok(exists(".directory .user"), "has a list of users");
});
2018-06-15 23:03:24 +08:00
});