fix: 토너먼트 예선 8명 기록을 보존

This commit is contained in:
2026-08-17 15:28:29 +00:00
parent 50e7d894e4
commit 15c5c1c98f
6 changed files with 63 additions and 9 deletions
@@ -249,6 +249,7 @@ describe('tournament router permissions and mutations', () => {
expect(results.filter((result) => result.status === 'rejected')).toHaveLength(1);
const summary = await caller.tournament.getBettingSummary();
expect(summary.myAmount).toBe(600);
expect(Object.values(summary.myTotals)).toEqual([600]);
expect(summary.totalAmount).toBe(600);
expect(transport.gold.get(general.id)).toBe(2_400);
});