MVP #141

Merged
flixcoo merged 705 commits from development into main 2026-01-09 12:55:50 +00:00
Showing only changes of commit 229750ffcf - Show all commits

View File

@@ -110,9 +110,9 @@ void main() {
expect(removed, true);
final result = await database.gameDao.getGameById(
gameId: testgameWithGroup.id,
gameId: testgameWithPlayers.id,
);
expect(result.players!.length, testgameWithGroup.players!.length - 1);
expect(result.players!.length, testgameWithPlayers.players!.length - 1);
final playerExists = result.players!.any(
(p) => p.id == playerToRemove.id,