From d21cca4fc863478c14cdf5792fd7adcdf878f21f Mon Sep 17 00:00:00 2001 From: Rosanny Date: Wed, 6 Jul 2022 14:32:27 +0200 Subject: [PATCH] minor fix --- src/config/dbconn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/dbconn.ts b/src/config/dbconn.ts index 2b0caa6d..2e5bc447 100644 --- a/src/config/dbconn.ts +++ b/src/config/dbconn.ts @@ -1,6 +1,6 @@ import mysql from 'mysql2' -const env = process.env.NODE_ENV ?? 'development' +const env = process.env.NODE_ENV ?? 'testing' const config = require('./config')[env] // ==== USER ACOOUNT DB CONNECTION ==== -- GitLab