mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
fix e2e
This commit is contained in:
@@ -34,7 +34,7 @@ def launch_sandbox_script(python_file_name: str) -> None:
|
|||||||
|
|
||||||
|
|
||||||
thread = threading.Thread(
|
thread = threading.Thread(
|
||||||
target=launch_sandbox_script, args=(target_script_name,), daemon=True
|
target=launch_sandbox_script, args=(target_script_name,), daemon=False
|
||||||
)
|
)
|
||||||
thread.start()
|
thread.start()
|
||||||
|
|
||||||
|
|||||||
@@ -177,7 +177,7 @@ class BasicApp(App, css_path="basic.css"):
|
|||||||
app = BasicApp()
|
app = BasicApp()
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
app.run(quit_after=1)
|
app.run(quit_after=2)
|
||||||
|
|
||||||
# from textual.geometry import Region
|
# from textual.geometry import Region
|
||||||
# from textual.color import Color
|
# from textual.color import Color
|
||||||
|
|||||||
Reference in New Issue
Block a user