summaryrefslogtreecommitdiff
path: root/tests/node_compat
diff options
context:
space:
mode:
Diffstat (limited to 'tests/node_compat')
-rw-r--r--tests/node_compat/polyfill_globals.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/node_compat/polyfill_globals.js b/tests/node_compat/polyfill_globals.js
index 93246d2ef..79e1cc3f9 100644
--- a/tests/node_compat/polyfill_globals.js
+++ b/tests/node_compat/polyfill_globals.js
@@ -1,5 +1,4 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-import process from "node:process";
import { Buffer } from "node:buffer";
import {
clearImmediate,
@@ -10,15 +9,12 @@ import {
setTimeout,
} from "node:timers";
import { performance } from "node:perf_hooks";
-import console from "node:console";
globalThis.Buffer = Buffer;
globalThis.clearImmediate = clearImmediate;
globalThis.clearInterval = clearInterval;
globalThis.clearTimeout = clearTimeout;
-globalThis.console = console;
globalThis.global = globalThis;
globalThis.performance = performance;
-globalThis.process = process;
globalThis.setImmediate = setImmediate;
globalThis.setInterval = setInterval;
globalThis.setTimeout = setTimeout;