mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
11 lines
248 B
JavaScript
11 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");
|
|
});
|
|
});
|