(outPath)
| 183 | ): LinuxScreenshotProvider { |
| 184 | return { |
| 185 | async capture(outPath) { |
| 186 | const tool = await resolveLocalLinuxTool(whichCommand, LOCAL_SCREENSHOT_TOOLS); |
| 187 | const command = LOCAL_SCREENSHOT_COMMANDS[tool](outPath); |
| 188 | await runCommand(command.cmd, command.args, command.options); |
| 189 | }, |
| 190 | }; |
| 191 | } |
| 192 |
nothing calls this directly
no test coverage detected