chore: add integration tests for spaces

Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
This commit is contained in:
TheOneWithTheBraid 2023-01-13 21:40:02 +01:00
commit 863da6a3be
3 changed files with 69 additions and 10 deletions

View file

@ -205,12 +205,3 @@ class ChatListView extends StatelessWidget {
);
}
}
enum ChatListPopupMenuItemActions {
createGroup,
createSpace,
discover,
setStatus,
inviteContact,
settings,
}

View file

@ -38,7 +38,7 @@ class NewSpaceController extends State<NewSpace> {
),
);
if (roomID.error == null) {
VRouter.of(context).toSegments(['rooms', roomID.result!, 'details']);
VRouter.of(context).toSegments(['spaces', roomID.result!]);
}
}