We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb6359d commit 18c08f5Copy full SHA for 18c08f5
test/automation/src/playwrightBrowser.ts
@@ -72,10 +72,11 @@ async function launchServer(options: LaunchOptions) {
72
logger.log(`Storing log files into '${serverLogsPath}'`);
73
74
logger.log(`Command line: '${serverLocation}' ${args.join(' ')}`);
75
+ const shell: boolean = (process.platform === 'win32');
76
const serverProcess = spawn(
77
serverLocation,
78
args,
- { env }
79
+ { env, shell }
80
);
81
82
logger.log(`Started server for browser smoke tests (pid: ${serverProcess.pid})`);
0 commit comments