cherry-pick(#12250): fix(electron): do not attach external debugger when running Electron tests
This commit is contained in:
parent
0037acffc6
commit
5b17ca9d56
|
|
@ -127,10 +127,15 @@ export class Electron extends SdkObject {
|
|||
const artifactsDir = await fs.promises.mkdtemp(ARTIFACTS_FOLDER);
|
||||
|
||||
const browserLogsCollector = new RecentLogsCollector();
|
||||
const env = options.env ? envArrayToObject(options.env) : process.env;
|
||||
// When debugging Playwright test that runs Electron, NODE_OPTIONS
|
||||
// will make the debugger attach to Electron's Node. But Playwright
|
||||
// also needs to attach to drive the automation. Disable external debugging.
|
||||
delete env.NODE_OPTIONS;
|
||||
const { launchedProcess, gracefullyClose, kill } = await launchProcess({
|
||||
command: options.executablePath || require('electron/index.js'),
|
||||
args: electronArguments,
|
||||
env: options.env ? envArrayToObject(options.env) : process.env,
|
||||
env,
|
||||
log: (message: string) => {
|
||||
progress.log(message);
|
||||
browserLogsCollector.log(message);
|
||||
|
|
|
|||
Loading…
Reference in a new issue