11 lines
334 B
JavaScript
11 lines
334 B
JavaScript
import { visit } from "@ember/test-helpers";
|
|
import { test } from "qunit";
|
|
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("User Directory - Mobile", { mobileView: true });
|
|
|
|
test("Visit Page", async (assert) => {
|
|
await visit("/u");
|
|
assert.ok(exists(".directory .user"), "has a list of users");
|
|
});
|