discourse/test/javascripts/acceptance/groups-test.js.es6

30 lines
746 B
Plaintext
Raw Normal View History

import { acceptance } from "helpers/qunit-helpers";
acceptance("Groups");
test("Browsing Groups", () => {
visit("/groups/discourse");
andThen(() => {
2016-06-02 09:21:43 -04:00
ok(count('.group-members tr') > 0, "it lists group members");
});
2016-06-02 09:21:43 -04:00
visit("/groups/discourse/posts");
andThen(() => {
2016-06-02 09:21:43 -04:00
ok(count('.user-stream .item') > 0, "it lists stream items");
});
visit("/groups/discourse/topics");
andThen(() => {
ok(count('.user-stream .item') > 0, "it lists stream items");
});
visit("/groups/discourse/mentions");
andThen(() => {
ok(count('.user-stream .item') > 0, "it lists stream items");
});
visit("/groups/discourse/messages");
andThen(() => {
ok(count('.user-stream .item') > 0, "it lists stream items");
});
});