Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions tests/test_cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,16 @@ def test_is_single_cell_widths() -> None:
[(0, 2, 0)],
0,
), # Two ZWJs should have zero width
(
"\x1b\ufe0f",
[(0, 2, 0)],
0,
), # VS16 after escape (zero-width, doesn't set last_measured_character) should have zero width
(
"\u200d\ufe0f",
[(0, 2, 0)],
0,
), # VS16 after ZWJ (zero-width, doesn't set last_measured_character) should have zero width
],
)
def test_split_graphemes(
Expand Down
Loading