mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 04:33:45 +08:00
14 lines
336 B
Plaintext
14 lines
336 B
Plaintext
|
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');
|
||
|
});
|
||
|
|
||
|
});
|