Files
bun.sh/test/regression/issue/23382.test.js
pfg 46cf50dee5 Fix 23382 (unicode object key printed as 'key" in snapshot instead of "key") (#23390)
Fixes #23382

Breaking change because any existing snapshots that have unicode keys
will need to be regenerated
2025-10-08 21:25:24 -07:00

8 lines
165 B
JavaScript

test("correct snapshot formatting for object key with unicode", () => {
expect({ "▶": "▹" }).toMatchInlineSnapshot(`
{
"▶": "▹",
}
`);
});