From 8e74cef4a5b63ab14e47d8d698f804745c0c4ea6 Mon Sep 17 00:00:00 2001
From: Catalin Mititiuc
Date: Thu, 18 Apr 2024 10:01:26 -0700
Subject: Run server on different port when running tests
---
test/integration/setup.cjs | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
create mode 100644 test/integration/setup.cjs
(limited to 'test/integration/setup.cjs')
diff --git a/test/integration/setup.cjs b/test/integration/setup.cjs
new file mode 100644
index 0000000..c476077
--- /dev/null
+++ b/test/integration/setup.cjs
@@ -0,0 +1,20 @@
+console.log("\nSpawning server process...");
+const { spawn } = require("child_process");
+
+module.exports = async function () {
+ const child = spawn("node", ["dev-server.cjs", "--test"]);
+
+ child.stdout.on('data', (data) => {
+ console.log(`${data}`);
+ });
+
+ globalThis.__INTEG_TEST_SERVER_PID__ = child.pid;
+
+ child.stderr.on("data", (data) => {
+ const str = data.toString();
+ console.log("[server]", str);
+ if (str.includes("localhost:3005")) {
+ setTimeout(resolve, 200);
+ }
+ });
+};
--
cgit v1.2.3