Change double quotes to single

This commit is contained in:
2025-06-16 22:41:30 -07:00
parent 7a9724849b
commit 13c0a98f1b
4 changed files with 12 additions and 12 deletions

View File

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