This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/test/javascripts/integration/static-test.js.es6

29 lines
604 B
JavaScript

integration("Static");
test("Static Pages", () => {
visit("/faq");
andThen(() => {
ok(exists(".body-page"), "The content is present");
});
visit("/guidelines");
andThen(() => {
ok(exists(".body-page"), "The content is present");
});
visit("/tos");
andThen(() => {
ok(exists(".body-page"), "The content is present");
});
visit("/privacy");
andThen(() => {
ok(exists(".body-page"), "The content is present");
});
visit("/login");
andThen(() => {
equal(currentPath(), "discovery.latest", "it redirects them to latest unless `login_required`");
});
});