diff options
Diffstat (limited to 'cli/js')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 6 | ||||
-rwxr-xr-x | cli/js/tests/unit_test_runner.ts | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 64e3613f5..4964f1b01 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -1562,6 +1562,8 @@ declare namespace Deno { /** Creates `newpath` as a hard link to `oldpath`. * + * **UNSTABLE**: needs security review. + * * await Deno.link("old/name", "new/name"); * * Requires `allow-read` and `allow-write` permissions. */ @@ -1569,6 +1571,8 @@ declare namespace Deno { /** **UNSTABLE**: `type` argument type may be changed to `"dir" | "file"`. * + * **UNSTABLE**: needs security review. + * * Creates `newpath` as a symbolic link to `oldpath`. * * The type argument can be set to `dir` or `file`. This argument is only @@ -1587,6 +1591,8 @@ declare namespace Deno { /** **UNSTABLE**: `type` argument may be changed to `"dir" | "file"` * + * **UNSTABLE**: needs security review. + * * Creates `newpath` as a symbolic link to `oldpath`. * * The type argument can be set to `dir` or `file`. This argument is only diff --git a/cli/js/tests/unit_test_runner.ts b/cli/js/tests/unit_test_runner.ts index ed8b9dd80..43009c612 100755 --- a/cli/js/tests/unit_test_runner.ts +++ b/cli/js/tests/unit_test_runner.ts @@ -90,6 +90,7 @@ function spawnWorkerRunner( const cmd = [ Deno.execPath(), "run", + "--unstable", // TODO(ry) be able to test stable vs unstable "-A", "cli/js/tests/unit_test_runner.ts", "--worker", |