Module

x/dotenv/load_test.ts

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