|
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");
|
|
});
|
|
}); |