FIX: editing a post wasn't showing error messages from the server

This commit is contained in:
Régis Hanol
2015-03-19 12:22:56 +01:00
parent b071bd3c7c
commit df3b1f6968
21 changed files with 113 additions and 117 deletions

View File

@ -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");
});
});