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