1 files changed, 0 insertions, 20 deletions
diff --git a/api/jest/globalSetup.js b/api/jest/globalSetup.js
deleted file mode 100644
index 520aa0e2..00000000
--- a/api/jest/globalSetup.js
+++ /dev/null
@@ -1,20 +0,0 @@
-const { Config, initDatabase } = require("@fosscord/util");
-const fs = require("fs");
-const path = require("path");
-const { FosscordServer } = require("../dist/Server");
-const Server = new FosscordServer({ port: 3001 });
-global.server = Server;
-module.exports = async () => {
- try {
- fs.unlinkSync(path.join(process.cwd(), "database.db"));
- } catch {}
-
- await initDatabase();
- await Config.init();
- Config.get().limits.rate.disabled = true;
- return await Server.start();
-};
-
-// afterAll(async () => {
-// return await Server.stop();
-// });
|