diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-04 19:34:40 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 09:34:40 +0000 |
commit | 31ecc09b5ae38531cb63680cc40b89d01d8635df (patch) | |
tree | d8bdc376168f6ef2a4310dacce5362a590169e2d /tests | |
parent | b333dccee82f4328a65d0c3c45c7aa5c19255220 (diff) |
BREAKING(io): remove `Deno.read[Sync]()` (#25409)
Towards #22079
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/specs/future/runtime_api/main.js | 2 | ||||
-rw-r--r-- | tests/specs/future/runtime_api/main.out | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js index a5ae5ec25..26a75373e 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -7,8 +7,6 @@ console.log( ); console.log("Deno.funlock is", Deno.funlock); console.log("Deno.funlockSync is", Deno.funlockSync); -console.log("Deno.read is", Deno.read); -console.log("Deno.readSync is", Deno.readSync); console.log("Deno.seek is", Deno.seek); console.log("Deno.seekSync is", Deno.seekSync); diff --git a/tests/specs/future/runtime_api/main.out b/tests/specs/future/runtime_api/main.out index b5886ec28..0aa4e1f7c 100644 --- a/tests/specs/future/runtime_api/main.out +++ b/tests/specs/future/runtime_api/main.out @@ -4,8 +4,6 @@ Deno.File is undefined Deno.FsFile.prototype.rid is undefined Deno.funlock is undefined Deno.funlockSync is undefined -Deno.read is undefined -Deno.readSync is undefined Deno.seek is undefined Deno.seekSync is undefined Deno.Listener.prototype.rid is undefined |