2018-04-25 04:28:41 -04:00
|
|
|
import {
|
|
|
|
acceptance
|
|
|
|
}
|
|
|
|
from "helpers/qunit-helpers";
|
|
|
|
|
|
|
|
acceptance("Dashboard Next", {
|
|
|
|
loggedIn: true
|
|
|
|
});
|
|
|
|
|
2018-05-03 09:41:41 -04:00
|
|
|
QUnit.test("Visit dashboard next page", assert => {
|
2018-04-25 04:28:41 -04:00
|
|
|
visit("/admin/dashboard-next");
|
|
|
|
|
|
|
|
andThen(() => {
|
|
|
|
assert.ok($('.dashboard-next').length, "has dashboard-next class");
|
|
|
|
});
|
|
|
|
});
|