Change double quotes to single
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
console.log("\nSpawning server process...");
|
||||
const { spawn } = require("child_process");
|
||||
console.log('\nSpawning server process...');
|
||||
const { spawn } = require('child_process');
|
||||
|
||||
module.exports = async function () {
|
||||
const child = spawn("node", ["server.cjs"]);
|
||||
const child = spawn('node', ['server.cjs']);
|
||||
|
||||
child.stdout.on('data', (data) => {
|
||||
console.log(`${data}`);
|
||||
@@ -10,10 +10,10 @@ module.exports = async function () {
|
||||
|
||||
globalThis.__INTEG_TEST_SERVER_PID__ = child.pid;
|
||||
|
||||
child.stderr.on("data", (data) => {
|
||||
child.stderr.on('data', (data) => {
|
||||
const str = data.toString();
|
||||
console.log("[server]", str);
|
||||
if (str.includes("localhost:3005")) {
|
||||
console.log('[server]', str);
|
||||
if (str.includes('localhost:3005')) {
|
||||
setTimeout(resolve, 200);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user