Module

x/dotenv/load_test.ts

Dotenv file handling for deno.
Extremely Popular
Go to Latest
File
import { env } from "deno";import { test, assertEqual } from "https://deno.land/x/testing/mod.ts";import "./load.ts";
test(function load() { assertEqual(env().GREETING, "hello world", "auto exports .env into env");});