We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 383e164 commit c421520Copy full SHA for c421520
1 file changed
src/test/utils/html.test.ts
@@ -288,4 +288,12 @@ describe("createNormalizedUrl", () => {
288
it("Permits Chinese characters", () => {
289
equal(createNormalizedUrl("文档"), "文档");
290
});
291
+
292
+ it("Permits Emoji characters", () => {
293
+ equal(createNormalizedUrl("🐌 Foo 🪐.md"), "🐌_Foo_🪐.md");
294
+ });
295
296
+ it("Permits UTF8 characters", () => {
297
+ equal(createNormalizedUrl("◉ bar⚐.md"), "◉_bar⚐.md");
298
299
0 commit comments