This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/test/javascripts/integration/static-test.js.es6

29 lines
604 B
Text
Raw Normal View History

2014-07-30 13:27:14 -04:00
integration("Static");
test("Static Pages", () => {
2014-07-30 13:27:14 -04:00
visit("/faq");
andThen(() => {
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(() => {
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(() => {
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(() => {
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
});