Add acceptance tests for all mobile templates

This commit is contained in:
Robin Ward
2016-05-05 12:49:12 -04:00
parent 22d7ea1192
commit 0fcfc6bed9
9 changed files with 78 additions and 29 deletions

View File

@ -0,0 +1,10 @@
import { acceptance } from "helpers/qunit-helpers";
acceptance("User Directory - Mobile", { mobileView: true });
test("Visit Page", () => {
visit("/users");
andThen(() => {
ok(exists('.directory .user'), "has a list of users");
});
});