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
});