This is where they should be as far as ember is concerned. Note this is a huge commit and we should be really careful everything continues to work properly.
9 lines
265 B
JavaScript
9 lines
265 B
JavaScript
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("User Directory - Mobile", { mobileView: true });
|
|
|
|
QUnit.test("Visit Page", async (assert) => {
|
|
await visit("/u");
|
|
assert.ok(exists(".directory .user"), "has a list of users");
|
|
});
|