mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
248 B
JavaScript
10 lines
248 B
JavaScript
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");
|
|
});
|
|
});
|