We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7338cb9 + f07a3fc commit f54bfe0Copy full SHA for f54bfe0
1 file changed
tests/test_cells.py
@@ -209,6 +209,16 @@ def test_is_single_cell_widths() -> None:
209
[(0, 2, 0)],
210
0,
211
), # Two ZWJs should have zero width
212
+ (
213
+ "\x1b\ufe0f",
214
+ [(0, 2, 0)],
215
+ 0,
216
+ ), # VS16 after escape (zero-width, doesn't set last_measured_character) should have zero width
217
218
+ "\u200d\ufe0f",
219
220
221
+ ), # VS16 after ZWJ (zero-width, doesn't set last_measured_character) should have zero width
222
],
223
)
224
def test_split_graphemes(
0 commit comments