diff --git a/test/automation/src/playwrightElectron.ts b/test/automation/src/playwrightElectron.ts index 79a4d26f032..56677298146 100644 --- a/test/automation/src/playwrightElectron.ts +++ b/test/automation/src/playwrightElectron.ts @@ -14,7 +14,7 @@ export async function launch(options: LaunchOptions): Promise<{ client: IDisposa // Resolve electron config and update const { electronPath, args, env } = await resolveElectronConfiguration(options); - args.push('--enable-smoke-test-driver', 'true'); + args.push('--enable-smoke-test-driver'); // Launch electron via playwright const { electron, context, page } = await launchElectron({ electronPath, args, env }, options);