mirror of https://github.com/Textualize/rich.git
8 lines
175 B
Python
8 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"
|