mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Fixes #23382 Breaking change because any existing snapshots that have unicode keys will need to be regenerated
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
test("correct snapshot formatting for object key with unicode", () => {
|
|
expect({ "▶": "▹" }).toMatchInlineSnapshot(`
|
|
{
|
|
"▶": "▹",
|
|
}
|
|
`);
|
|
});
|