From 3ccfb5370f74ac6376897afbf9b86e3b1e5baaa1 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Wed, 15 Feb 2023 11:16:23 +0000 Subject: [PATCH] Add Markdown and MarkdownViewer to the disabled property test --- tests/test_disabled.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_disabled.py b/tests/test_disabled.py index 2f59fee71..8ad3d0e09 100644 --- a/tests/test_disabled.py +++ b/tests/test_disabled.py @@ -8,6 +8,8 @@ from textual.widgets import ( DirectoryTree, Input, ListView, + Markdown, + MarkdownViewer, Switch, TextLog, Tree, @@ -28,6 +30,8 @@ class DisableApp(App[None]): Switch(), TextLog(), Tree("Test"), + Markdown(), + MarkdownViewer(), id="test-container", )