From 2a8dc70ae1e78ce167b4ca7a54e141ac80f0bf89 Mon Sep 17 00:00:00 2001 From: Joshua Carlson <61999256+jrcarl624@users.noreply.github.com> Date: Mon, 19 Jun 2023 15:40:35 -0700 Subject: [PATCH] Dot env toggle change --- test/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index 76efb1b..363bb67 100644 --- a/test/index.js +++ b/test/index.js @@ -1,7 +1,7 @@ import { Session } from "../dist/index.js"; import { config } from "dotenv"; -if (process.env.USE_DOTENV !== "false") { +if (process.env.USE_DOTENV === "true") { config(); }