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

34 lines
902 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Static");
2014-07-30 13:27:14 -04:00
test("Static Pages", () => {
2014-07-30 13:27:14 -04:00
visit("/faq");
andThen(() => {
2016-11-10 14:35:53 -05:00
ok($('body.static-faq').length, "has the body class");
2014-07-30 13:27:14 -04:00
ok(exists(".body-page"), "The content is present");
});
2014-07-30 13:27:14 -04:00
visit("/guidelines");
andThen(() => {
2016-11-10 14:35:53 -05:00
ok($('body.static-guidelines').length, "has the body class");
2014-07-30 13:27:14 -04:00
ok(exists(".body-page"), "The content is present");
});
2014-07-30 13:27:14 -04:00
visit("/tos");
andThen(() => {
2016-11-10 14:35:53 -05:00
ok($('body.static-tos').length, "has the body class");
2014-07-30 13:27:14 -04:00
ok(exists(".body-page"), "The content is present");
});
2014-07-30 13:27:14 -04:00
visit("/privacy");
andThen(() => {
2016-11-10 14:35:53 -05:00
ok($('body.static-privacy').length, "has the body class");
2014-07-30 13:27:14 -04:00
ok(exists(".body-page"), "The content is present");
});
visit("/login");
andThen(() => {
equal(currentPath(), "discovery.latest", "it redirects them to latest unless `login_required`");
});
2014-07-30 13:27:14 -04:00
});