mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-05-01 16:34:14 -04:00
The term "Acceptance" seems to have won out everywhere and I don't want our codebase to be confusing.
14 lines
358 B
JavaScript
14 lines
358 B
JavaScript
import { acceptance } from "helpers/qunit-helpers";
|
|
acceptance("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");
|
|
});
|
|
});
|