summaryrefslogtreecommitdiff
path: root/tests/unit/os_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/os_test.ts')
-rw-r--r--tests/unit/os_test.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/unit/os_test.ts b/tests/unit/os_test.ts
index 42b598511..9503f75d1 100644
--- a/tests/unit/os_test.ts
+++ b/tests/unit/os_test.ts
@@ -239,6 +239,11 @@ Deno.test(
async function hostnameWithoutOtherNetworkUsages() {
const { stdout } = await new Deno.Command(Deno.execPath(), {
args: ["eval", "-p", "Deno.hostname()"],
+ env: {
+ LD_PRELOAD: "",
+ LD_LIBRARY_PATH: "",
+ DYLD_FALLBACK_LIBRARY_PATH: "",
+ },
}).output();
const hostname = new TextDecoder().decode(stdout).trim();
assert(hostname.length > 0);