2015-04-06 14:14:00 -04:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Static");
|
2014-07-30 13:27:14 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test("Static Pages", assert => {
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/faq");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.static-faq').length, "has the body class");
|
|
|
|
assert.ok(exists(".body-page"), "The content is present");
|
2014-07-30 13:27:14 -04:00
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/guidelines");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.static-guidelines').length, "has the body class");
|
|
|
|
assert.ok(exists(".body-page"), "The content is present");
|
2014-07-30 13:27:14 -04:00
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/tos");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.static-tos').length, "has the body class");
|
|
|
|
assert.ok(exists(".body-page"), "The content is present");
|
2014-07-30 13:27:14 -04:00
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/privacy");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.ok($('body.static-privacy').length, "has the body class");
|
|
|
|
assert.ok(exists(".body-page"), "The content is present");
|
2014-07-30 13:27:14 -04:00
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
|
|
|
visit("/login");
|
2015-03-19 07:22:56 -04:00
|
|
|
andThen(() => {
|
2017-06-14 13:57:58 -04:00
|
|
|
assert.equal(currentPath(), "discovery.latest", "it redirects them to latest unless `login_required`");
|
2014-07-31 17:59:52 -04:00
|
|
|
});
|
2017-06-14 13:57:58 -04:00
|
|
|
});
|