deno.land / std@0.224.0 / dotenv / load_test.ts
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.import { assertEquals } from "../assert/mod.ts";import * as path from "../path/mod.ts";
const moduleDir = path.dirname(path.fromFileUrl(import.meta.url));const testdataDir = path.resolve(moduleDir, "testdata");
Deno.test({ name: "load()", async fn() { const command = new Deno.Command(Deno.execPath(), { args: [ "run", "--allow-read", "--allow-env", "--no-lock", path.join(testdataDir, "./app_load.ts"), ], clearEnv: true, cwd: testdataDir, }); const { stdout } = await command.output();
const decoder = new TextDecoder(); assertEquals( decoder.decode(stdout).trim(), "hello world", ); },});
Deno.test({ name: "load() works as expected when the multiple files are imported", async fn() { const command = new Deno.Command(Deno.execPath(), { args: [ "run", "--no-lock", "--allow-read", "--allow-env", path.join(testdataDir, "./app_load_parent.ts"), ], clearEnv: true, cwd: testdataDir, }); const { stdout } = await command.output();
const decoder = new TextDecoder(); assertEquals( decoder.decode(stdout).trim(), "hello world", ); },});
Version Info