Skip to content

Commit 87a55df

Browse files
committed
spawn parameters
1 parent 763f136 commit 87a55df

File tree

1 file changed

+7
-2
lines changed
  • packages/compass-smoke-tests/src

1 file changed

+7
-2
lines changed

packages/compass-smoke-tests/src/cli.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,13 @@ function startAutoUpdateServer({
252252
throw new Error(`compass-mongodb-com does not exist: ${cwd}`);
253253
}
254254

255-
console.log('Starting auto-update server');
256-
return crossSpawn('npm', ['run', 'start'], { env, cwd, shell: true });
255+
console.log('Starting auto-update server', cwd);
256+
return crossSpawn('npm', ['run', 'start'], {
257+
env,
258+
cwd,
259+
stdio: 'inherit',
260+
shell: true,
261+
});
257262
}
258263

259264
type RunTestOptions = {

0 commit comments

Comments
 (0)