Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(console): improve test coverage #4177

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions console/unicode_width_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,18 @@ Deno.test("unicodeWidth()", async (t) => {
// See discussion at https://github.com/denoland/deno_std/pull/3297#discussion_r1166289430
assertEquals(unicodeWidth("👩‍🔬"), 4); // Woman Scientist
});

await t.step("checks escape sequences", () => {
assertEquals(unicodeWidth("\0"), 0);
assertEquals(unicodeWidth("\n"), 0);
assertEquals(unicodeWidth("\r"), 0);
assertEquals(unicodeWidth("\t"), 0);
});

await t.step("checks C1 controls", () => {
assertEquals(unicodeWidth("\u0080"), 0);
assertEquals(unicodeWidth("\u008A"), 0);
assertEquals(unicodeWidth("\u0093"), 0);
assertEquals(unicodeWidth("\u009F"), 0);
});
});