(templateUdid, name)
| 506 | } |
| 507 | |
| 508 | async function cloneSimulator(templateUdid, name) { |
| 509 | return ( |
| 510 | await execText("xcrun", ["simctl", "clone", templateUdid, name]) |
| 511 | ).trim(); |
| 512 | } |
| 513 | |
| 514 | async function deleteSimulator(udid) { |
| 515 | await execFileAsync("xcrun", ["simctl", "delete", udid], { timeout: 60000 }); |
no test coverage detected