This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/test/javascripts/integration/header_test.js

11 lines
207 B
JavaScript
Raw Normal View History

2013-06-20 13:58:54 -04:00
integration("Header");
test("/", function() {
expect(2);
visit("/").then(function() {
ok(exists("header"), "The header was rendered");
ok(exists("#site-logo"), "The logo was shown");
});
});