mirror of
https://github.com/discourse/discourse.git
synced 2025-05-24 14:12:10 +08:00
FIX: editing a post wasn't showing error messages from the server
This commit is contained in:
@ -1,12 +1,13 @@
|
||||
integration("Groups");
|
||||
|
||||
test("Browsing Groups", function() {
|
||||
test("Browsing Groups", () => {
|
||||
visit("/groups/discourse");
|
||||
andThen(function() {
|
||||
andThen(() => {
|
||||
ok(count('.user-stream .item') > 0, "it has stream items");
|
||||
});
|
||||
|
||||
visit("/groups/discourse/members");
|
||||
andThen(function() {
|
||||
andThen(() => {
|
||||
ok(count('.group-members tr') > 0, "it lists group members");
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user