Skip to content

Commit

Permalink
test base
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Sep 23, 2022
1 parent 36b25a3 commit d49e7be
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_table.py
Expand Up @@ -220,7 +220,13 @@ def test_section():
table.add_row("row5")
table.add_section() # Null-op

console = Console(record=True)
console = Console(
width=80,
force_terminal=True,
color_system="truecolor",
legacy_windows=False,
record=True,
)
console.print(table)
output = console.export_text()
print(repr(output))
Expand Down

0 comments on commit d49e7be

Please sign in to comment.