diff options
Diffstat (limited to 'tests/specs')
-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 ab53a809b..4e22716f0 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -1,8 +1,6 @@ console.log("window is", globalThis.window); console.log("Deno.Buffer is", Deno.Buffer); console.log("Deno.File is", Deno.File); -console.log("Deno.fstat is", Deno.fstat); -console.log("Deno.fstatSync is", Deno.fstatSync); console.log("Deno.ftruncate is", Deno.ftruncate); console.log("Deno.ftruncateSync is", Deno.ftruncateSync); console.log( diff --git a/tests/specs/future/runtime_api/main.out b/tests/specs/future/runtime_api/main.out index 08b62ea3a..922f4afad 100644 --- a/tests/specs/future/runtime_api/main.out +++ b/tests/specs/future/runtime_api/main.out @@ -1,8 +1,6 @@ window is undefined Deno.Buffer is undefined Deno.File is undefined -Deno.fstat is undefined -Deno.fstatSync is undefined Deno.ftruncate is undefined Deno.ftruncateSync is undefined Deno.FsFile.prototype.rid is undefined |