summaryrefslogtreecommitdiff
path: root/tests/specs/run/node_globals_hints/global.out
blob: ad01ac426d8f685a81c017e6c4e18aa52eb25b39 (plain)
1
2
3
4
5
6
7
8
error: Uncaught (in promise) ReferenceError: global is not defined
global;
^
    at [WILDCARD]global.js:1:1

    info: global is not available in the global scope in Deno.
    hint: Use globalThis instead, or assign globalThis.global = globalThis,
          or run again with --unstable-node-globals flag to add this global.