discourse/test/javascripts/acceptance/static-test.js.es6

33 lines
974 B
Plaintext
Raw Normal View History

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");
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-30 13:27:14 -04:00
visit("/guidelines");
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-30 13:27:14 -04:00
visit("/tos");
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-30 13:27:14 -04:00
visit("/privacy");
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
});
visit("/login");
andThen(() => {
2017-06-14 13:57:58 -04:00
assert.equal(currentPath(), "discovery.latest", "it redirects them to latest unless `login_required`");
});
2017-06-14 13:57:58 -04:00
});