From 182160786643735965ac4f2ae915a658b639376d Mon Sep 17 00:00:00 2001 From: Refringe Date: Mon, 30 Oct 2023 11:46:40 -0400 Subject: [PATCH] Moved import under database comment. --- project/tests/CustomEnvironment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/tests/CustomEnvironment.ts b/project/tests/CustomEnvironment.ts index cbc55fcc..9f689017 100644 --- a/project/tests/CustomEnvironment.ts +++ b/project/tests/CustomEnvironment.ts @@ -1,6 +1,5 @@ import "reflect-metadata"; import { container, DependencyContainer } from "tsyringe"; -import path from "node:path"; // For the Vitest Custom Environment. import type { Environment } from "vitest"; @@ -13,6 +12,7 @@ import { DatabaseServer } from "@spt-aki/servers/DatabaseServer"; import { ImporterUtil } from "@spt-aki/utils/ImporterUtil"; // Required for creating a temporary test account/profile. +import path from "node:path"; import { SaveServer } from "@spt-aki/servers/SaveServer"; import { LauncherController } from "@spt-aki/controllers/LauncherController"; import { IRegisterData } from "@spt-aki/models/eft/launcher/IRegisterData";