mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
test fix
This commit is contained in:
@@ -368,6 +368,7 @@ class App(Generic[ReturnType], DOMNode):
|
|||||||
self._screenshot: str | None = None
|
self._screenshot: str | None = None
|
||||||
self._dom_lock = asyncio.Lock()
|
self._dom_lock = asyncio.Lock()
|
||||||
self._dom_ready = False
|
self._dom_ready = False
|
||||||
|
self.set_class(self.dark, "-dark-mode")
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def return_value(self) -> ReturnType | None:
|
def return_value(self) -> ReturnType | None:
|
||||||
|
|||||||
@@ -91,13 +91,14 @@ class Header(Widget):
|
|||||||
Header {
|
Header {
|
||||||
dock: top;
|
dock: top;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: $secondary-background;
|
background: $foreground 5%;
|
||||||
color: $text;
|
color: $text;
|
||||||
height: 1;
|
height: 1;
|
||||||
}
|
}
|
||||||
Header.-tall {
|
Header.-tall {
|
||||||
height: 3;
|
height: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
tall = Reactive(False)
|
tall = Reactive(False)
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -12,7 +12,9 @@ async def test_run_test() -> None:
|
|||||||
|
|
||||||
app = TestApp()
|
app = TestApp()
|
||||||
async with app.run_test() as pilot:
|
async with app.run_test() as pilot:
|
||||||
assert str(pilot) == "<Pilot app=TestApp(title='TestApp')>"
|
assert (
|
||||||
|
str(pilot) == "<Pilot app=TestApp(title='TestApp', classes={'-dark-mode'})>"
|
||||||
|
)
|
||||||
await pilot.press("tab", *"foo")
|
await pilot.press("tab", *"foo")
|
||||||
await pilot.pause(1 / 100)
|
await pilot.pause(1 / 100)
|
||||||
await pilot.exit("bar")
|
await pilot.exit("bar")
|
||||||
|
|||||||
Reference in New Issue
Block a user