Remove sidebar help panels

This commit is contained in:
Codex
2026-08-09 13:45:36 +02:00
parent fa7a922d13
commit 1048b70ca8
6 changed files with 12 additions and 20 deletions
+4
View File
@@ -3959,6 +3959,10 @@ class TemplateHelperTests(unittest.TestCase):
self.assertIn('/api/queue/clear-failed', APP.QUEUE_HTML)
self.assertIn('Removed failed jobs', APP.QUEUE_HTML)
def test_queue_and_watchlist_sidebars_do_not_show_help_panels(self):
self.assertNotIn("What you can do here", APP.QUEUE_HTML)
self.assertNotIn("How it works", APP.WATCHLIST_HTML)
def test_queue_page_formats_jellyfin_handoff_jobs(self):
self.assertIn('job.job_type === "jellyfin_handoff"', APP.QUEUE_HTML)
self.assertIn('const progress = `${job.completed || 0}/${job.total || 0} entries`;', APP.QUEUE_HTML)