mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
29 lines
853 B
TypeScript
29 lines
853 B
TypeScript
import { expect, test } from "bun:test";
|
|
import { bunEnv, bunExe } from "harness";
|
|
|
|
// See https://github.com/oven-sh/bun/pull/2939
|
|
test("non-ascii property name", () => {
|
|
const { stdout } = Bun.spawnSync({
|
|
cmd: [bunExe(), "run", require("path").join(import.meta.dir, "./property-non-ascii-fixture.js")],
|
|
env: bunEnv,
|
|
});
|
|
const filtered = stdout.toString().replaceAll("\n", "").replaceAll(" ", "");
|
|
expect(filtered).toBe(
|
|
`{
|
|
"código": 1,
|
|
"código2": 2,
|
|
"código3": 3,
|
|
"código4": 4,
|
|
"código5": 5,
|
|
"😋 Get ": 6,
|
|
} 1 1 2 3 4 3 2 4 5 2 6 6 6 6 6 6 6 6
|
|
`
|
|
.replaceAll("\n", "")
|
|
.replaceAll(" ", ""),
|
|
);
|
|
// just to be sure
|
|
expect(Buffer.from(Bun.CryptoHasher.hash("sha1", filtered) as Uint8Array).toString("hex")).toBe(
|
|
"0bf68c8c4a35576ca3e27240565582ddc7c3ed3f",
|
|
);
|
|
});
|