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