add test to see if fail for streams and evetns

This commit is contained in:
larssand
2026-07-02 10:51:56 +02:00
parent 19e65da697
commit a8c00c35b2
4 changed files with 57 additions and 1 deletions

View File

@@ -32,6 +32,10 @@ class DashboardTests(unittest.TestCase):
self.assertIn("Update profile", HTML)
self.assertIn("function mergeProfile", HTML)
def test_dashboard_has_direct_stream_selection_save(self):
self.assertIn("Save streams", HTML)
self.assertIn("function saveStreamSelection", HTML)
if __name__ == "__main__":
unittest.main()