diff options
Diffstat (limited to 'cli/tests/node_compat/polyfill_globals.js')
-rw-r--r-- | cli/tests/node_compat/polyfill_globals.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/cli/tests/node_compat/polyfill_globals.js b/cli/tests/node_compat/polyfill_globals.js deleted file mode 100644 index 93246d2ef..000000000 --- a/cli/tests/node_compat/polyfill_globals.js +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import process from "node:process"; -import { Buffer } from "node:buffer"; -import { - clearImmediate, - clearInterval, - clearTimeout, - setImmediate, - setInterval, - 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; -delete globalThis.window; |