mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
9 lines
251 B
JavaScript
9 lines
251 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("User Directory - Mobile", { mobileView: true });
|
|
|
|
QUnit.test("Visit Page", async assert => {
|
|
await visit("/users");
|
|
assert.ok(exists(".directory .user"), "has a list of users");
|
|
});
|