chore(electron): put client-provided arguments in front (#16782)

Fixes #16614
This commit is contained in:
Andrey Lushnikov 2022-08-23 15:08:36 -07:00 коммит произвёл GitHub
Родитель b57b30033a
Коммит 6ebd3ea61f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -125,7 +125,7 @@ export class Electron extends SdkObject {
controller.setLogName('browser');
return controller.run(async progress => {
let app: ElectronApplication | undefined = undefined;
const electronArguments = ['--inspect=0', '--remote-debugging-port=0', ...args];
const electronArguments = [...args, '--inspect=0', '--remote-debugging-port=0'];
if (os.platform() === 'linux') {
const runningAsRoot = process.geteuid && process.geteuid() === 0;