diff options
author | Steven Guerrero <stephenguerrero43@gmail.com> | 2020-11-19 07:23:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 07:23:42 -0500 |
commit | 315d889afa38e976b106a3769cab206db31d5ce8 (patch) | |
tree | b3243c90f6678cb6d2909bc9f6acceb412b21a6f /std/node/process_test.ts | |
parent | e3c3fc58cbc5053866928d33ffe25340c2bacc02 (diff) |
fix(std/node): correct typings for global, globalThis, window (#8363)
Diffstat (limited to 'std/node/process_test.ts')
-rw-r--r-- | std/node/process_test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/std/node/process_test.ts b/std/node/process_test.ts index ee566853e..34ce50d7a 100644 --- a/std/node/process_test.ts +++ b/std/node/process_test.ts @@ -6,6 +6,7 @@ import * as path from "../path/mod.ts"; import * as all from "./process.ts"; import { argv, env } from "./process.ts"; import { delay } from "../async/delay.ts"; +import "./global.ts"; // NOTE: Deno.execPath() (and thus process.argv) currently requires --allow-env // (Also Deno.env.toObject() (and process.env) requires --allow-env but it's more obvious) |