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-14 13:57:58 -04:00
QUnit.test("Visit Page", assert => {
visit("/users");
andThen(() => {
2018-06-15 11:03:24 -04:00
assert.ok(exists(".directory .user"), "has a list of users");
});
2018-06-15 11:03:24 -04:00
});