feat: add tournament schedule feature test (issue #7)

- Add tournament-schedule.feature with 4 scenarios
- Add step definitions for tournament schedule navigation
- Tests viewing schedule, generating round-robin, bye rounds, and matchup navigation
- Note: Some @wip scenarios require data setup (tournament creation, team addition)
This commit is contained in:
2026-04-25 21:15:54 -07:00
parent 1093449e46
commit d5dc170417
4 changed files with 80 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ export interface WorldState {
password: string;
};
tournament?: any;
tournamentTeamCount?: number;
player?: any;
match?: any;
}