mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:52:52 +08:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("User Directory - Mobile", { mobileView: true });
|
|
|
|
QUnit.test("Visit Page", assert => {
|
|
visit("/users");
|
|
andThen(() => {
|
|
assert.ok(exists('.directory .user'), "has a list of users");
|
|
});
|
|
}); |