Skip to main content
Module

x/dotenv/dotenv_test.ts

Dotenv file handling for deno.
Extremely Popular
Go to Latest
File
import { assertEquals } from "./test_deps.ts";import { config } from "./dotenv.ts";
Deno.test("dotenv", () => { config(); assertEquals( Deno.env.get("GREETING"), "hello world", "dotenv.ts export still works", );});