This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/test/javascripts/integration/header_test.js
2013-06-20 13:58:54 -04:00

15 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");
});
});