(app)
| 149 | await runCommand('xdg-open', [target], { allowFailure: true }); |
| 150 | }, |
| 151 | async closeApp(app) { |
| 152 | if (await whichCommand('wmctrl')) { |
| 153 | await runCommand('wmctrl', ['-c', app], { allowFailure: true }); |
| 154 | return; |
| 155 | } |
| 156 | |
| 157 | await runCommand('pkill', ['-x', app], { allowFailure: true }); |
| 158 | }, |
| 159 | }; |
| 160 | } |
| 161 |
nothing calls this directly
no test coverage detected