()
| 39 | } |
| 40 | |
| 41 | function runRuntimeServer(): DeferredPromise<ChildProcess> { |
| 42 | return spawnAndWaitForStdout('pnpm', ['start:runtime'], (stdout) => { |
| 43 | return stdout.includes('Server is now listening'); |
| 44 | }); |
| 45 | } |
| 46 | |
| 47 | function runPreviewServer(): DeferredPromise<ChildProcess> { |
| 48 | return spawnAndWaitForStdout('pnpm', ['start:preview'], (stdout) => { |
no test coverage detected