1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/specs/run/unstable/broadcast_channel.out
Bartek Iwańczuk 04a9cc95ac
feat: Add better error messages for unstable APIs (#25519)
This commit improves error messages for unstable APIs:
- `--unstable-broadcast-channel`
- `--unstable-cron`
- `--unstable-http`
- `--unstable-kv`
- `--unstable-temporal`

By providing information and hints what went wrong and how the
error can be fixed. It reuses the same infra that was added in 
https://github.com/denoland/deno/pull/21764.
2024-09-09 22:51:55 +02:00

7 lines
281 B
Text

error: Uncaught (in promise) ReferenceError: BroadcastChannel is not defined
new BroadcastChannel("hello");
^
at [WILDCARD]broadcast_channel.ts:1:1
info: BroadcastChannel is an unstable API.
hint: Run again with `--unstable-broadcast-channel` flag to enable this API.