mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 13:03:43 +08:00
15 lines
213 B
JavaScript
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");
|
|
});
|
|
|
|
});
|
|
|
|
|