mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
2ea4c1c9de
Also added integration tests so we don't miss this breaking in the future.
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
integration("Groups");
|
|
|
|
test("Browsing Groups", function() {
|
|
visit("/groups/discourse");
|
|
andThen(function() {
|
|
ok(count('.user-stream .item') > 0, "it has stream items");
|
|
});
|
|
visit("/groups/discourse/members");
|
|
andThen(function() {
|
|
ok(count('.group-members tr') > 0, "it lists group members");
|
|
});
|
|
});
|