fix: 修改windows启动兼容问题 (#28)

This commit is contained in:
luch 2023-12-19 19:25:08 +08:00 committed by sudoooooo
parent 594cdde0cf
commit 7b3ec44aea

View File

@ -9,7 +9,10 @@ async function startServerAndRunScript() {
console.log('MongoDB Memory Server started:', mongoUri);
// 通过 spawn 运行另一个脚本,并传递 MongoDB 连接 URL 作为环境变量
const tsnode = spawn('cross-env', [`xiaojuSurveyMongoUrl="${mongoUri}"`, 'npx', 'ts-node-dev', './src/index.ts'])
const tsnode = spawn('cross-env', [`xiaojuSurveyMongoUrl="${mongoUri}"`, 'npx', 'ts-node-dev', './src/index.ts'], {
stdio: 'inherit',
shell: process.platform === 'win32'
});
tsnode.stdout?.on('data', (data) => {
console.log(data.toString());
});