summaryrefslogtreecommitdiffstats
path: root/tests/test_jupyter.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_jupyter.py')
-rw-r--r--tests/test_jupyter.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_jupyter.py b/tests/test_jupyter.py
new file mode 100644
index 0000000..a69f211
--- /dev/null
+++ b/tests/test_jupyter.py
@@ -0,0 +1,7 @@
+from rich.console import Console
+
+
+def test_jupyter():
+ console = Console(force_jupyter=True)
+ assert console.width == 93
+ assert console.color_system == "truecolor"