2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-07 12:02:53 +08:00
discourse/test/javascripts/integration/header_test.js
2013-06-20 13:58:54 -04:00

14 lines
213 B
JavaScript

integration("Header");
test("/", function() {
visit("/").then(function() {
expect(2);
ok(exists("header"), "The header was rendered");
ok(exists("#site-logo"), "The logo was shown");
});
});