From 7963e7540f4899c16a49b47cf5145f46ea0c71cf Mon Sep 17 00:00:00 2001 From: Paul Date: Wed, 10 May 2023 19:47:22 +0700 Subject: [PATCH] fix: add dotenv.config() to test/dev.ts (#2646) --- test/dev.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/dev.ts b/test/dev.ts index 728ed5ad49..7ac7a730a8 100644 --- a/test/dev.ts +++ b/test/dev.ts @@ -3,6 +3,9 @@ import path from 'path'; import express from 'express'; import { v4 as uuid } from 'uuid'; import payload from '../src'; +import * as dotenv from "dotenv"; + +dotenv.config(); const [testSuiteDir] = process.argv.slice(2);