mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-25 00:29:30 -05:00
22 lines
461 B
JavaScript
22 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");
|
|
});
|
|
});
|