Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: c476077c9e7118956dd1df9274080959baa421b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
    }
  });
};