2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

Remove the ScrollTop Mixin

This commit is contained in:
Robin Ward 2016-11-10 14:35:53 -05:00
parent 0904ad5537
commit a94f06ff78
20 changed files with 77 additions and 95 deletions

View file

@ -4,21 +4,25 @@ acceptance("Static");
test("Static Pages", () => {
visit("/faq");
andThen(() => {
ok($('body.static-faq').length, "has the body class");
ok(exists(".body-page"), "The content is present");
});
visit("/guidelines");
andThen(() => {
ok($('body.static-guidelines').length, "has the body class");
ok(exists(".body-page"), "The content is present");
});
visit("/tos");
andThen(() => {
ok($('body.static-tos').length, "has the body class");
ok(exists(".body-page"), "The content is present");
});
visit("/privacy");
andThen(() => {
ok($('body.static-privacy').length, "has the body class");
ok(exists(".body-page"), "The content is present");
});