Module

x/dotenv/dotenv_test.ts

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