Files
ts-scripts/libraries/deno-teencrypt-mod.test.ts
2026-02-08 16:04:51 +08:00

12 lines
301 B
TypeScript

import {assertEquals} from "jsr:@std/assert";
import {teDecryptToString, teEncrypt} from "./deno-teencrypt-mod.ts";
Deno.test("teEncryptDecrypt", async () => {
assertEquals(
"hello world",
await teDecryptToString(
await teEncrypt("hello world"),
),
);
});