mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
14 lines
213 B
JavaScript
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");
|
|
});
|
|
|
|
});
|
|
|
|
|