We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 332c438 commit dfe45a8Copy full SHA for dfe45a8
src/workerd/api/kv-test.js
@@ -108,8 +108,8 @@ export default {
108
109
response = await env.KV.get(['key1', 'key2'], {});
110
expected = new Map([
111
- ['key1', '{\"example\":\"values-key1\"}'],
112
- ['key2', '{\"example\":\"values-key2\"}'],
+ ['key1', '{"example":"values-key1"}'],
+ ['key2', '{"example":"values-key2"}'],
113
]);
114
assert.deepStrictEqual(response, expected);
115
@@ -131,7 +131,7 @@ export default {
131
132
response = await env.KV.get(['key1', 'not-found'], { cacheTtl: 100 });
133
134
135
['not-found', null],
136
137
0 commit comments