2014-07-30 13:27:14 -04:00
|
|
|
integration("Static");
|
|
|
|
|
|
|
|
test("Static Pages", function() {
|
|
|
|
visit("/faq");
|
|
|
|
andThen(function() {
|
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/guidelines");
|
|
|
|
andThen(function() {
|
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/tos");
|
|
|
|
andThen(function() {
|
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
2014-07-30 13:27:14 -04:00
|
|
|
visit("/privacy");
|
|
|
|
andThen(function() {
|
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-07-31 17:59:52 -04:00
|
|
|
|
|
|
|
visit("/login");
|
|
|
|
andThen(function() {
|
|
|
|
equal(currentPath(), "discovery.latest", "it redirects them to latest unless `login_required`");
|
|
|
|
});
|
2014-07-30 13:27:14 -04:00
|
|
|
});
|