Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 2ea9e634b9bfd6d522719f607f980a1835af449f (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', ['server.cjs']);

  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);
    }
  });
};