Web Dev Solutions

Catalin Mititiuc

aboutsummaryrefslogtreecommitdiff
blob: 451e82d4449ce44dff3215f816885f765a012a7e (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 (globalConfig, projectConfig) {
  const child = spawn('node', ['esbuild-server.mjs']);

  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(projectConfig.globals.testServerUrl)) {
      setTimeout(resolve, 200);
    }
  });
};