mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
11 lines
248 B
Text
11 lines
248 B
Text
|
import { acceptance } from "helpers/qunit-helpers";
|
||
|
|
||
|
acceptance("User Directory - Mobile", { mobileView: true });
|
||
|
|
||
|
test("Visit Page", () => {
|
||
|
visit("/users");
|
||
|
andThen(() => {
|
||
|
ok(exists('.directory .user'), "has a list of users");
|
||
|
});
|
||
|
});
|