pub deno commons mod

This commit is contained in:
2026-02-10 23:52:29 +08:00
parent d318fdda7d
commit 2997939c8e
2 changed files with 15 additions and 19 deletions

View File

@@ -98,11 +98,11 @@ Deno.test("base64Url", () => {
);
});
Deno.test("test-key-ring-rs", () => {
setKeyRingPassword("test-service", "test-user", "test-password");
Deno.test("test-key-ring-rs", async () => {
await setKeyRingPassword("test-service", "test-user", "test-password");
assertEquals(
"test-password",
getKeyRingPassword("test-service", "test-user"),
await getKeyRingPassword("test-service", "test-user"),
);
});