refactor(tests): update test files to use new player field names

This commit is contained in:
2026-04-03 21:04:06 -07:00
parent 52da77d57b
commit 9137fabc2b
5 changed files with 106 additions and 61 deletions
+4 -4
View File
@@ -98,10 +98,10 @@ test.describe('Home Page', () => {
await prisma.match.create({
data: {
eventId: tournament.id,
team1P1Id: player1.id,
team1P2Id: player2.id,
team2P1Id: player3.id,
team2P2Id: player4.id,
player1P1Id: player1.id,
player1P2Id: player2.id,
player2P1Id: player3.id,
player2P2Id: player4.id,
team1Score: 10,
team2Score: 5,
status: 'completed',