fix: add dotenv.config() to test/dev.ts (#2646)

This commit is contained in:
Paul
2023-05-10 19:47:22 +07:00
committed by GitHub
parent 85316879cd
commit 7963e7540f

View File

@@ -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);