diff options
| author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-03 18:33:26 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-03 18:33:26 +1000 |
| commit | 259752537f5c81101c47a547ae345f0863235cf6 (patch) | |
| tree | 2dfae7a86a8a6260fdcad7f33eeac0b78dae0128 /tests/specs | |
| parent | e49d80e500c384b381c375900060e5a476581541 (diff) | |
BREAKING: remove `Deno.close()` (#25347)
Towards #22079
Diffstat (limited to 'tests/specs')
| -rw-r--r-- | tests/specs/future/runtime_api/main.js | 1 | ||||
| -rw-r--r-- | tests/specs/future/runtime_api/main.out | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js index 6bc83d30c..503b6e5fb 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -1,6 +1,5 @@ console.log("window is", globalThis.window); console.log("Deno.Buffer is", Deno.Buffer); -console.log("Deno.close is", Deno.close); console.log("Deno.copy is", Deno.copy); console.log("Deno.File is", Deno.File); console.log("Deno.fstat is", Deno.fstat); diff --git a/tests/specs/future/runtime_api/main.out b/tests/specs/future/runtime_api/main.out index 2a8167ef9..eca1c3741 100644 --- a/tests/specs/future/runtime_api/main.out +++ b/tests/specs/future/runtime_api/main.out @@ -1,6 +1,5 @@ window is undefined Deno.Buffer is undefined -Deno.close is undefined Deno.copy is undefined Deno.File is undefined Deno.fstat is undefined |
