diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-06 15:01:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 19:31:09 +0530 |
commit | 13279cb0ab5f0573fe846d55c7e031ac4731436d (patch) | |
tree | 824639c81b7a88afdffeb4ed4b85334cdfad3844 /cli/tests/testdata | |
parent | 49d8320e45df8695696de5127659f8dacddb9e2a (diff) |
fix(compile): preserve granular unstable features (#21827)
Fix https://github.com/denoland/deno/issues/21814
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r-- | cli/tests/testdata/compile/unstable_features.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tests/testdata/compile/unstable_features.ts b/cli/tests/testdata/compile/unstable_features.ts new file mode 100644 index 000000000..819a3d187 --- /dev/null +++ b/cli/tests/testdata/compile/unstable_features.ts @@ -0,0 +1,2 @@ +const db = await Deno.openKv(); +console.log(db); |