diff options
| author | Julien Cayzac <jcayzac@users.noreply.github.com> | 2023-12-08 22:24:49 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-08 14:24:49 +0100 |
| commit | ca64771257d23ceee97e882965269702c359f6aa (patch) | |
| tree | 7b348cdba31e60f7988c032672530a21fdeb2a56 /cli/tests/testdata/run/unstable_kv.js | |
| parent | e15c735edee6a6faf17f618b245908f635a3d9a7 (diff) | |
fix(unstable): Honor granular unstable flags in js runtime (#21466)
This fixes #21434 for `BroadcastChannel` and `WebSocketStream`.
`--unstable` still enable both, but granular unstable flags now also
work:
* `--unstable-net` now enables `WebSocketStream`.
* `--unstable-broadcast-channel` now enables `BroadcastChannel`.
* Additionally, there are now tests for all granular unstable flags.
Since `unsafe-proto` already had tests, so I didn't add any for this
one.
It also introduces a map to keep track of granular unstable ids without
having to sync multiple places.
Diffstat (limited to 'cli/tests/testdata/run/unstable_kv.js')
| -rw-r--r-- | cli/tests/testdata/run/unstable_kv.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cli/tests/testdata/run/unstable_kv.js b/cli/tests/testdata/run/unstable_kv.js new file mode 100644 index 000000000..17c0e05aa --- /dev/null +++ b/cli/tests/testdata/run/unstable_kv.js @@ -0,0 +1,14 @@ +const scope = import.meta.url.slice(-7) === "#worker" ? "worker" : "main"; + +console.log(scope, Deno.AtomicOperation); +console.log(scope, Deno.Kv); +console.log(scope, Deno.KvListIterator); +console.log(scope, Deno.KvU64); +console.log(scope, Deno.openKv); + +if (scope === "worker") { + postMessage("done"); +} else { + const worker = new Worker(`${import.meta.url}#worker`, { type: "module" }); + worker.onmessage = () => Deno.exit(0); +} |
