mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
|
integration("User");
|
||
|
|
||
|
test("Profile", function() {
|
||
|
|
||
|
visit("/users/eviltrout").then(function() {
|
||
|
expect(2);
|
||
|
|
||
|
ok(exists(".user-heading"), "The heading is rendered");
|
||
|
ok(exists("#user-stream"), "The stream is rendered");
|
||
|
});
|
||
|
|
||
|
});
|