()
| 127 | const shell = emulator.shell.create(); |
| 128 | |
| 129 | const startPreview = async () => { |
| 130 | await shell.runCommand('node', ['index.js']); |
| 131 | }; |
| 132 | const stopPreview = async () => { |
| 133 | await shell.kill(); |
| 134 | }; |
nothing calls this directly
no test coverage detected