mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 06:53:46 +08:00
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
integration("Groups");
|
|
|
|
test("Browsing Groups", () => {
|
|
visit("/groups/discourse");
|
|
andThen(() => {
|
|
ok(count('.user-stream .item') > 0, "it has stream items");
|
|
});
|
|
|
|
visit("/groups/discourse/members");
|
|
andThen(() => {
|
|
ok(count('.group-members tr') > 0, "it lists group members");
|
|
});
|
|
});
|