mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
14 lines
304 B
Text
14 lines
304 B
Text
|
integration("User Card");
|
||
|
|
||
|
test("card", function() {
|
||
|
visit('/');
|
||
|
|
||
|
ok(find('#user-card:visible').length === 0, 'user card is invisible by default');
|
||
|
click('a[data-user-card=eviltrout]:first');
|
||
|
|
||
|
andThen(function() {
|
||
|
ok(find('#user-card:visible').length === 1, 'card should appear');
|
||
|
});
|
||
|
|
||
|
});
|