mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 01:56:01 -05:00
22 lines
494 B
Text
22 lines
494 B
Text
|
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");
|
||
|
});
|
||
|
});
|