2016-05-05 12:49:12 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
|
|
|
|
acceptance("User Directory - Mobile", { mobileView: true });
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Visit Page", assert => {
|
2016-05-05 12:49:12 -04:00
|
|
|
visit("/users");
|
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok(exists('.directory .user'), "has a list of users");
|
2016-05-05 12:49:12 -04:00
|
|
|
});
|
2017-06-14 13:57:58 -04:00
|
|
|
});
|