mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 11:03:37 +08:00
23 lines
461 B
JavaScript
23 lines
461 B
JavaScript
|
integration("Static");
|
||
|
|
||
|
test("Faq", function() {
|
||
|
expect(1);
|
||
|
visit("/faq").then(function() {
|
||
|
ok(exists(".body-page"), "The content is present");
|
||
|
});
|
||
|
});
|
||
|
|
||
|
test("Terms of Service", function() {
|
||
|
expect(1);
|
||
|
visit("/tos").then(function() {
|
||
|
ok(exists(".body-page"), "The content is present");
|
||
|
});
|
||
|
});
|
||
|
|
||
|
test("Privacy", function() {
|
||
|
expect(1);
|
||
|
visit("/privacy").then(function() {
|
||
|
ok(exists(".body-page"), "The content is present");
|
||
|
});
|
||
|
});
|