js snippet displays dynamic ellipsis on loading-style token gatekeeper modals; tweaks to existing pythonic & test structure to accomodate

This commit is contained in:
Disco DeDisco
2026-03-14 01:14:05 -04:00
parent d780115515
commit d9feb80b2a
4 changed files with 44 additions and 5 deletions

View File

@@ -38,7 +38,7 @@ class GatekeeperTest(FunctionalTest):
# 4. Page shows room name, GATHERING status
body = self.browser.find_element(By.TAG_NAME, "body")
self.assertIn("Test Room", body.text)
self.assertIn("GATHERING", body.text)
self.assertIn("GATHERING GAMERS", body.text)
# 5. Six token slots are visible
slots = self.browser.find_elements(By.CSS_SELECTOR, ".gate-slot")
self.assertEqual(len(slots), 6)