From c8f7bd12e832376e36b07c502a8323ab171e2641 Mon Sep 17 00:00:00 2001 From: Carl Downing Date: Sun, 30 Jul 2023 14:45:57 -0700 Subject: [PATCH] Envrionment --- CommonServer/Tests/TestingUtils/Init.ts | 2 +- CommonServer/Utils/{Envrionment.ts => Environment.ts} | 0 CommonServer/Utils/StartServer.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename CommonServer/Utils/{Envrionment.ts => Environment.ts} (100%) diff --git a/CommonServer/Tests/TestingUtils/Init.ts b/CommonServer/Tests/TestingUtils/Init.ts index 0f2da37f93..fa7d0fc77d 100644 --- a/CommonServer/Tests/TestingUtils/Init.ts +++ b/CommonServer/Tests/TestingUtils/Init.ts @@ -1,5 +1,5 @@ process.env['NODE_ENV'] = 'test'; -import '../../Utils/Envrionment'; +import '../../Utils/Environment'; import dotenv from 'dotenv'; diff --git a/CommonServer/Utils/Envrionment.ts b/CommonServer/Utils/Environment.ts similarity index 100% rename from CommonServer/Utils/Envrionment.ts rename to CommonServer/Utils/Environment.ts diff --git a/CommonServer/Utils/StartServer.ts b/CommonServer/Utils/StartServer.ts index 5eb7943535..0e6a332614 100644 --- a/CommonServer/Utils/StartServer.ts +++ b/CommonServer/Utils/StartServer.ts @@ -1,4 +1,4 @@ -import './Envrionment'; +import './Environment'; import './Process'; import logger from './Logger'; import cors from 'cors';