import { identity } from "./macro.ts" assert { type: "macro" }; test("latin1 string", () => { expect(identity("©")).toBe("©"); }); test("ascii string", () => { expect(identity("abc")).toBe("abc"); }); test("utf16 string", () => { expect(identity("😊 Smiling Face with Smiling Eyes Emoji")).toBe("😊 Smiling Face with Smiling Eyes Emoji"); });