diff options
Diffstat (limited to 'tests/specs/future/unstable_flags/main.js')
-rw-r--r-- | tests/specs/future/unstable_flags/main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/specs/future/unstable_flags/main.js b/tests/specs/future/unstable_flags/main.js index 0d86d0d09..51af892f6 100644 --- a/tests/specs/future/unstable_flags/main.js +++ b/tests/specs/future/unstable_flags/main.js @@ -1,3 +1,5 @@ +console.log(typeof await navigator.gpu.requestAdapter() === "object"); // Throws without `--unstable-gpu` +console.log(typeof Deno.dlopen === "function"); // Undefined without `--unstable-ffi` console.log( // Undefined without `--unstable-fs` Deno.build.os === "windows" ? true : typeof Deno.umask === "function", |