Tweaking the styling of the sync button

This commit is contained in:
Zef Hemel
2023-09-07 12:33:25 +02:00
parent b936a435ab
commit ae2135714d
4 changed files with 10 additions and 5 deletions
+5 -1
View File
@@ -43,8 +43,12 @@ async function test(db: KvPrimitives) {
"address.city",
"San Francisco",
]],
select: ["name"],
});
assertEquals(results[0], {
key: ["kv", "complicated"],
value: { name: "Frank" },
});
assertEquals(results[0].key, ["kv", "complicated"]);
}
Deno.test("Test Deno KV DataStore", async () => {