Prettier fix

This commit is contained in:
Mattia Migliorini
2026-03-09 13:29:09 +01:00
parent b5f4af23b9
commit c415c12675
+5 -1
View File
@@ -219,7 +219,11 @@ describe("computeClanTeamName", () => {
});
it("returns null when three distinct clans each hold one player", () => {
const players = [human("1", "ALPHA"), human("2", "BETA"), human("3", "GAMMA")];
const players = [
human("1", "ALPHA"),
human("2", "BETA"),
human("3", "GAMMA"),
];
expect(computeClanTeamName(players)).toBeNull();
});