We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdbae58 commit 6055d88Copy full SHA for 6055d88
integration-tests/js-compute/fixtures/module-mode/src/kv-store.js
@@ -43,6 +43,7 @@ const debug = sdkVersion.endsWith('-debug');
43
44
for (let i = 0; i < 100; i++) {
45
await store.put('c' + i, 'd', {
46
+ mode: 'overwrite',
47
metadata: i % 2 === 0 ? '42' : new Uint8Array([42]),
48
});
49
}
@@ -61,7 +62,7 @@ const debug = sdkVersion.endsWith('-debug');
61
62
63
await store.put('c5', 'cba', {
64
mode: 'prepend',
- metadata: new Uint8Array([0xf0, 0xf0]),
65
+ metadata: 'cbad',
66
67
const c5Entry = await store.get('c5');
68
if (isRunningLocally()) {
0 commit comments