fix(ui): send session_token from player screen on lie submit
All checks were successful
CI / test-and-quality (push) Successful in 1m35s
CI / test-and-quality (pull_request) Successful in 1m34s

This commit is contained in:
2026-02-27 23:20:43 +01:00
parent 37e1d32675
commit 5894987a1c
2 changed files with 5 additions and 2 deletions

View File

@@ -751,6 +751,8 @@ class UiScreenTests(TestCase):
response = self.client.get(reverse("lobby:player_screen"))
self.assertEqual(response.status_code, 200)
self.assertContains(response, "Player panel")
self.assertContains(response, "id=\"sessionToken\"")
self.assertContains(response, "session_token")
class SessionDetailRoundQuestionTests(TestCase):