()
| 765 | } |
| 766 | |
| 767 | function cleanup() { |
| 768 | try { |
| 769 | closeSession(); |
| 770 | } catch {} |
| 771 | if (simulatorUDID && !keepSimulator) { |
| 772 | spawnSync("xcrun", ["simctl", "shutdown", simulatorUDID], { |
| 773 | stdio: "ignore", |
| 774 | }); |
| 775 | spawnSync("xcrun", ["simctl", "delete", simulatorUDID], { |
| 776 | stdio: "ignore", |
| 777 | }); |
| 778 | } |
| 779 | fs.rmSync(tempRoot, { recursive: true, force: true }); |
| 780 | } |
no test coverage detected