2015-04-07 02:14:00 +08:00
|
|
|
import { acceptance } from "helpers/qunit-helpers";
|
|
|
|
acceptance("Static");
|
2014-07-31 01:27:14 +08:00
|
|
|
|
2015-03-19 19:22:56 +08:00
|
|
|
test("Static Pages", () => {
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/faq");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2014-07-31 01:27:14 +08:00
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-08-01 05:59:52 +08:00
|
|
|
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/guidelines");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2014-07-31 01:27:14 +08:00
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-08-01 05:59:52 +08:00
|
|
|
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/tos");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2014-07-31 01:27:14 +08:00
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-08-01 05:59:52 +08:00
|
|
|
|
2014-07-31 01:27:14 +08:00
|
|
|
visit("/privacy");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2014-07-31 01:27:14 +08:00
|
|
|
ok(exists(".body-page"), "The content is present");
|
|
|
|
});
|
2014-08-01 05:59:52 +08:00
|
|
|
|
|
|
|
visit("/login");
|
2015-03-19 19:22:56 +08:00
|
|
|
andThen(() => {
|
2014-08-01 05:59:52 +08:00
|
|
|
equal(currentPath(), "discovery.latest", "it redirects them to latest unless `login_required`");
|
|
|
|
});
|
2014-07-31 01:27:14 +08:00
|
|
|
});
|