mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 08:39:38 -05:00
21 lines
494 B
JavaScript
21 lines
494 B
JavaScript
integration("Static");
|
|
|
|
test("Static Pages", function() {
|
|
expect(4);
|
|
visit("/faq");
|
|
andThen(function() {
|
|
ok(exists(".body-page"), "The content is present");
|
|
});
|
|
visit("/guidelines");
|
|
andThen(function() {
|
|
ok(exists(".body-page"), "The content is present");
|
|
});
|
|
visit("/tos");
|
|
andThen(function() {
|
|
ok(exists(".body-page"), "The content is present");
|
|
});
|
|
visit("/privacy");
|
|
andThen(function() {
|
|
ok(exists(".body-page"), "The content is present");
|
|
});
|
|
});
|