summary refs log tree commit diff
diff options
context:
space:
mode:
authorxnacly <matteogropp@protonmail.com>2021-08-30 16:21:54 +0200
committerxnacly <matteogropp@protonmail.com>2021-08-30 16:21:54 +0200
commitd107c66358592336d9f6ba8d263b645c242b4c1e (patch)
tree7516382d1ce79ff3357a0560f87e847d426f1c5c
parentadded jest config, installed supertest (diff)
downloadserver-d107c66358592336d9f6ba8d263b645c242b4c1e.tar.xz
added setup for jest tests
-rw-r--r--api/jest/setup.js2
-rw-r--r--api/package.json2
-rw-r--r--api/scripts/setup_test.js14
3 files changed, 16 insertions, 2 deletions
diff --git a/api/jest/setup.js b/api/jest/setup.js
new file mode 100644
index 00000000..abc485ae
--- /dev/null
+++ b/api/jest/setup.js
@@ -0,0 +1,2 @@
+jest.spyOn(global.console, "log").mockImplementation(() => jest.fn());
+jest.spyOn(global.console, "info").mockImplementation(() => jest.fn());
diff --git a/api/package.json b/api/package.json
index ff9efa52..b8bb4d45 100644
--- a/api/package.json
+++ b/api/package.json
@@ -85,7 +85,7 @@
 		"typeorm": "^0.2.37"
 	},
 	"jest": {
-		"setupFilesAfterEnv": [
+		"setupFiles": [
 			"<rootDir>/jest/setup.js",
 			"<rootDir>/scripts/setup_test.js"
 		],
diff --git a/api/scripts/setup_test.js b/api/scripts/setup_test.js
index 4b692f7c..95bf2e40 100644
--- a/api/scripts/setup_test.js
+++ b/api/scripts/setup_test.js
@@ -1 +1,13 @@
-// TODO: start api
+const fs = require("fs");
+const { FosscordServer } = require("../dist/Server");
+const Server = new FosscordServer({ port: 3001 });
+(async () => {
+	try {
+		fs.unlinkSync(`${__dirname}/database.db`);
+	} catch {}
+	return await Server.start();
+})();
+
+// afterAll(async () => {
+// 	return await Server.stop();
+// });