mirror of
https://github.com/Textualize/rich.git
synced 2025-08-16 08:20:27 +00:00
7 lines
175 B
Python
7 lines
175 B
Python
from rich.console import Console
|
|
|
|
|
|
def test_jupyter():
|
|
console = Console(force_jupyter=True)
|
|
assert console.width == 93
|
|
assert console.color_system == "truecolor"
|