Add turn alerts and public team rosters
Some checks failed
CI / backend (push) Has been cancelled
CI / frontend (push) Has been cancelled
CI / compose (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-19 20:46:23 +03:00
parent a311b7761d
commit 5e0825f43f
8 changed files with 125 additions and 2 deletions

View File

@@ -31,6 +31,9 @@ describe('Mixmaker frontend', () => {
window.history.replaceState({}, '', '/events/event-3')
render(<App />)
expect(await screen.findByRole('link', { name: /^open live$/i })).toHaveAttribute('href', '/events/event-3/live')
expect(screen.getByRole('heading', { name: 'Balanced teams' })).toBeInTheDocument()
expect(screen.getByRole('heading', { name: 'Ember Wolves' })).toBeInTheDocument()
expect(screen.getByRole('heading', { name: 'Azure Phantoms' })).toBeInTheDocument()
expect(screen.getByRole('button', { name: 'Going' })).toBeDisabled()
expect(screen.getByText('Registration has been closed by the organizer.')).toBeInTheDocument()
})