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"); }); // test("template string ascii", () => { // expect(identity(`A${""}`)).toBe("A"); // }); // test("template string latin1", () => { // expect(identity(`©${""}`)).toBe("©"); // });